-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (37 loc) · 955 Bytes
/
Copy pathpyproject.toml
File metadata and controls
42 lines (37 loc) · 955 Bytes
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
[tool.poetry]
name = "easymodel"
version = "0.1.0"
description = "A comprehensive model fine-tuning and evaluation platform"
authors = ["Pratyay Pandey <p.pandey@berkeley.edu>"]
readme = "README.md"
[tool.poetry.scripts]
start-local = "easymodel.main:start_local"
[tool.poetry.dependencies]
python = "^3.12"
uvicorn = {extras = ["standard"], version = "^0.34.0"}
fastapi = "^0.115.6"
httpx = "^0.28.1"
structlog = "^24.4.0"
transformers = "^4.47.1"
datasets = "^3.2.0"
huggingface-hub = "^0.27.0"
pydantic = "^2.10.4"
argparse = "^1.4.0"
peft = "^0.14.0"
deepspeed = "^0.16.2"
torch = ">=2.0.0"
setuptools = "^75.8.0"
numpy = ">=1.24.0"
sentence-transformers = "^2.5.1"
scikit-learn = "^1.5.2"
nltk = "^3.8.1"
evaluate = "^0.4.1"
[tool.poetry.group.dev.dependencies]
flake8 = "^7.1.1"
pep8-naming = "^0.14.1"
black = "^24.10.0"
ruff = "^0.8.4"
setuptools = "^75.8.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"