-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (48 loc) · 1.16 KB
/
pyproject.toml
File metadata and controls
51 lines (48 loc) · 1.16 KB
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
[project]
name = "replicateai"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"datasets>=4.2.0",
"einops>=0.8.1",
"graphviz>=0.21",
"hydra-core>=1.3.2",
"hypothesis>=6.142.2",
"ipykernel>=7.1.0",
"matplotlib>=3.10.7",
"nltk>=3.9.2",
"pytest>=8.4.2",
"sacrebleu>=2.5.1",
"sacremoses>=0.1.1",
"scikit-learn>=1.7.2",
"sentencepiece>=0.2.1",
"tiktoken>=0.12.0",
"torch>=2.7.0",
"torchinfo>=1.8.0",
"torchmetrics>=1.8.2",
"torchsummary>=1.5.1",
"torchview>=0.2.7",
"torchvision>=0.22.0",
"tqdm>=4.67.1",
"transformers[torch]>=4.57.1",
"wandb>=0.22.2",
]
[tool.uv.sources]
torch = [
{ index = "pytorch-cpu", marker = "sys_platform != 'linux'" },
{ index = "pytorch-cu128", marker = "sys_platform == 'linux'" },
]
torchvision = [
{ index = "pytorch-cpu", marker = "sys_platform != 'linux'" },
{ index = "pytorch-cu128", marker = "sys_platform == 'linux'" },
]
[[tool.uv.index]]
name = "pytorch-cpu"
url = "https://download.pytorch.org/whl/cpu"
explicit = true
[[tool.uv.index]]
name = "pytorch-cu128"
url = "https://download.pytorch.org/whl/cu128"
explicit = true