-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (28 loc) · 770 Bytes
/
Copy pathpyproject.toml
File metadata and controls
30 lines (28 loc) · 770 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
[project]
name = "model-experiments"
version = "0.1.0"
description = "Using models as classifiers and changing their innards."
readme = "README.md"
requires-python = ">=3.14"
dependencies = [
"accelerate>=1.13.0",
"bitsandbytes>=0.43.0",
"hf>=1.18.0",
"labl-utils",
"matplotlib>=3.9",
"python-dotenv>=1.1.0",
"scikit-learn>=1.5",
"torch>=2.11.0",
"torchaudio>=2.11.0",
"torchvision>=0.26.0",
"transformers>=5.10.2",
]
[[tool.uv.index]]
name = "pytorch-cu128"
url = "https://download.pytorch.org/whl/cu128"
explicit = true
[tool.uv.sources]
torch = { index = "pytorch-cu128" }
torchvision = { index = "pytorch-cu128" }
torchaudio = { index = "pytorch-cu128" }
labl-utils = { git = "https://github.com/bentdixon/labl-utils" }