-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
56 lines (52 loc) · 1.28 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "llms"
version = "0.0.1"
authors = [
{ name="Marcio Fonseca", email="[email protected]" },
]
description = "An evaluation tool for language models"
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"cmake>=3.28.1",
"datasets>=2.10.1",
"fire>=0.5.0",
"p_tqdm>=1.4.0",
"rouge_score>=0.1.2",
"torch>=2.0.0",
"transformers>=4.33.4",
"rich>=13.3.2",
"scipy>=1.10.1",
"diskcache>=5.4.0",
"openai>=1.0.0",
"tiktoken>=0.3.1",
"cohere>=4.0.2",
"accelerate>=0.17.1",
"sentencepiece>=0.1.97",
"bitsandbytes>=0.37.1",
"fschat>=0.2.20",
"protobuf>=3.20.0",
"arxiv>=1.4.7",
"pdfminer.six==20221105",
"textdistance==4.5.0",
"textstat==0.7.3",
"lmql==0.7.3",
]
[project.urls]
"Homepage" = "https://github.com/thefonseca/llms"
"Bug Tracker" = "https://github.com/thefonseca/llms/issues"
[tool.setuptools.packages.find]
where = ["."]
include = ["llms*"]
[project.scripts]
llm-generate = "llms.evaluation:main"
llm-classify = "llms.classifiers.evaluation:main"
llm-summarize = "llms.summarizers.evaluation:main"