-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
59 lines (56 loc) · 1.54 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
[tool.poetry]
name = "pan24-generative-authorship-detection"
version = "0.1.0"
description = ""
authors = ["Janek Bevendorff <[email protected]>"]
readme = "README.md"
packages = [
{ include = "pan24_llm_dataset" },
{ include = "pan24_llm_baselines" },
{ include = "pan24_llm_evaluator" },
{ include = "llm_detection_tools" },
]
license = "Apache License 2.0"
[tool.poetry.dependencies]
python = "^3.10"
gnews = "^0.3.6"
click = "^8.1.7"
newspaper3k = "^0.2.8"
betterproto = {extras = ["compiler"], version = "^1.2.5"}
pyarrow = "^15.0.0"
pandas = "^2.2.0"
numpy = "^1.26.3"
transformers = "^4.40.1"
torch = "^2.2.2"
openai = "^1.10.0"
jsonschema = "^4.21.1"
markdown = "^3.5.2"
resiliparse = "^0.14.5"
backoff = "^2.2.1"
scipy = "^1.12.0"
accelerate = "^0.29.3"
bitsandbytes = "^0.42.0"
auto-gptq = "^0.6.0"
autoawq = "^0.1.8"
optimum = "^1.16.2"
tqdm = "^4.66.1"
jinja2 = "^3.1.3"
google-cloud-aiplatform = "^1.41.0"
matplotlib = "^3.8.4"
seaborn = "^0.13.2"
scikit-learn = "^1.4.1.post1"
pyppmd = "^1.1.0"
more-itertools = "^10.2.0"
tira = "^0.0.125"
jupyter = "^1.0.0"
[tool.poetry.scripts]
news-source = 'pan24_llm_dataset.news_source:main'
llm-generate = 'pan24_llm_dataset.llm_generate:main'
dataset-sample = 'pan24_llm_dataset.dataset_sample:main'
baseline = 'pan24_llm_baselines.baseline:main'
perturb-cache = 'pan24_llm_baselines.perturb_cache:main'
evaluator = 'pan24_llm_evaluator.evaluator:main'
llm-stats = 'llm_detection_tools.llm_stats:main'
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"