-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
40 lines (35 loc) · 971 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
[tool.black]
line-length = 120
[tool.poetry]
name = "pointer-generator-llama"
package-mode = false
version = "0.1.0"
description = ""
authors = ["Aditya Mayukh Som <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "~3.10"
torch = { version = "~2.5.0+cu124", source = "pytorch-gpu" }
torchaudio = { version = "~2.5.0+cu124", source = "pytorch-gpu" }
torchvision = { version = "~0.20.0+cu124", source = "pytorch-gpu" }
datasets = "~3.0.1"
transformers = "~4.45.2"
accelerate = "~1.0.1"
peft = "~0.13.2"
trl = "~0.11.4"
bitsandbytes = "~0.44.1"
wandb = "^0.18.3"
loguru = "^0.7.2"
python-dotenv = "^1.0.1"
torchdata = "~0.8.0"
tfrecord = { extras = ["torch"], version = "^1.14.5" }
tabulate = "^0.9.0"
pandas = "^2.2.3"
rouge-score = "^0.1.2"
[[tool.poetry.source]]
name = "pytorch-gpu"
url = "https://download.pytorch.org/whl/cu124"
priority = "explicit"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"