-
Notifications
You must be signed in to change notification settings - Fork 15
/
pyproject.toml
41 lines (38 loc) · 996 Bytes
/
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "model_arithmetic"
version = "1.1.0"
authors = [
{ name="Anonymous", email="anonymous@anonymous.com" },
]
description = "Prompt Arithmetic Package"
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"accelerate >= 0.21.0",
"loguru >= 0.7.0",
"matplotlib >= 3.7.2",
"numpy >= 1.24.3",
"pandas >= 2.0.3",
"trl >= 0.5.0",
"transformers >= 4.31.0",
"torch >= 2.0.1",
"scikit-learn >= 1.3.0",
"sentencepiece >= 0.1.99",
"peft >= 0.4.0",
"fuzzywuzzy >= 0.18.0",
"google-api-python-client >= 2.97.0",
"python-Levenshtein >= 0.21.1",
"python_dotenv >= 1.0.0",
"charset_normalizer>=3.2.0",
"aiohttp >= 3.8.5",
"sacrebleu >= 2.4.1",
"rouge_score >= 0.1.2"
]