-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (42 loc) · 1.47 KB
/
pyproject.toml
File metadata and controls
50 lines (42 loc) · 1.47 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
[project]
name = "Expedition44"
version = "0.1.0"
requires-python = ">=3.12"
dependencies = [
# Torch with cuda 13
"torch==2.10.0+cu130",
"torchvision==0.25.0+cu130", # not really needed, but gets imported somewhere
# Datasets & tokenization
"datasets", # Download datasets from Hugging Face
"transformers", # Hugging Face tokenizers
"tokenmonster", # TokenMonster tokenizers
# Visualization & utilities
"fvcore", # Model summary
"torchview", # Computational graph visualization
"plotext", # LR schedule plotting in the terminal
"matplotlib",
"nvtx",
# Optimizers
"torch-shampoo",
"heavyball", # Cautious Adam
"muon-optimizer",
"pytorch_optimizer",
# Evals
"lm_eval",
# Local submodule
"quartet2",
# Logging
"csvlogger @ git+https://github.com/gvlassis/csvlogger.git",
"microseconds_formatter @ git+https://github.com/gvlassis/microseconds_formatter.git"
]
[[tool.uv.index]]
name = "pytorch-cu130"
url = "https://download.pytorch.org/whl/cu130"
explicit = true
[tool.uv.sources]
torch = { index = "pytorch-cu130" }
torchvision = { index = "pytorch-cu130" }
torch-shampoo = { git = "https://github.com/gvlassis/optimizers" }
muon-optimizer = { git = "https://github.com/KellerJordan/Muon" }
pytorch_optimizer = { git = "https://github.com/gvlassis/pytorch_optimizer" }
quartet2 = { path = "./quartet2" }