-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
49 lines (46 loc) · 1.15 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
[project]
name = "kurtis"
version = "0.1.0"
authors = ["Massimo R. Scamarcia <[email protected]>"]
description = "Kurtis SLM"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"chardet>=5.2.0",
"click>=8.1.7",
"einops>=0.8.0",
"evaluate>=0.4.3",
"nltk>=3.9.1",
"peft>=0.13.2",
"prompt-toolkit>=3.0.48",
"protobuf>=5.28.3",
"pyfiglet>=1.0.2",
"rich>=13.9.4",
"rouge-score>=0.1.2",
"safetensors>=0.4.5",
"scikit-learn>=1.5.2",
"sentencepiece>=0.2.0",
"transformers>=4.46.2",
"trl>=0.12.0",
"urwid>=2.6.16",
"torch==2.5.1 ; platform_machine != 'x86_64'",
"torch==2.5.1+cu124 ; platform_machine == 'x86_64'",
"accelerate>=1.1.1",
"datasets>=3.1.0",
"numpy>=2.1.3",
"tqdm>=4.67.0",
"bitsandbytes>=0.44.1 ; platform_machine == 'x86_64'",
"setuptools>=75.3.0",
]
[tool.uv.sources]
torch = { index = "pytorch-cu124", marker = "platform_machine == 'x86_64'"}
[[tool.uv.index]]
name = "pytorch-cu124"
url = "https://download.pytorch.org/whl/cu124"
explicit = true
[dependency-groups]
dev = [
"black>=24.10.0",
"pre-commit>=4.0.1",
"ruff>=0.7.3",
]