-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (32 loc) · 860 Bytes
/
pyproject.toml
File metadata and controls
35 lines (32 loc) · 860 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
31
32
33
34
35
[project]
name = "on-policy-quantization"
version = "0.1.0"
description = "On policy quantization"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"accelerate>=1.12.0",
"datasets>=4.4.1",
"jupyterlab>=4.5.1",
"lm-eval>=0.4.0",
"matplotlib",
"numpy>=2",
"peft>=0.18.0",
"pydantic>=2.12.5",
"pydantic-config[toml]",
"scipy>=1.16.3",
"torch>=2.9.1",
"transformers>=4.57.3",
"trl>=0.26.2",
"wandb>=0.23.1",
]
[project.optional-dependencies]
gpu = ["torchao", "fbgemm-gpu-genai>=1.4.2", "bitsandbytes>=0.49.0"]
quant = ["llmcompressor"]
[[tool.uv.index]]
name = "pytorch-nightly"
url = "https://download.pytorch.org/whl/nightly/cu129"
explicit = true
[tool.uv.sources]
pydantic-config = { git = "https://github.com/tom-pollak/pydantic_config.git" }
torchao = { index = "pytorch-nightly" }