-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (41 loc) · 1.21 KB
/
pyproject.toml
File metadata and controls
47 lines (41 loc) · 1.21 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
[project]
name = "alignment"
version = "1.0.0"
description = "CS 336 Spring 2025 Assignment 5: Alignment"
readme = "README.md"
requires-python = ">=3.11,<3.13" # Python 3.13 not yet supported for some deps
dependencies = [
"cse599o-basics",
"accelerate>=1.5.2",
"alpaca-eval",
"flash-attn==2.7.4.post1",
"jupyter>=1.1.1",
"math-verify[antlr4-13-2]>=0.7.0",
"pylatexenc==2.10",
"notebook>=7.4.2",
"pytest>=8.3.5",
"torch",
"tqdm>=4.67.1",
"transformers>=4.50.0",
"typer>=0.15.4",
"wandb>=0.19.8",
"xopen>=2.0.2",
"ray>=2.51.1",
"cupy-cuda13x",
"nixl",
]
[tool.setuptools.packages.find]
include = ["cse599o_alignment"]
[tool.uv]
package = true
no-build-isolation-package = ["flash-attn"]
[tool.uv.sources]
alpaca-eval = { git = "https://github.com/nelson-liu/alpaca_eval.git", rev = "forward_kwargs_to_vllm" }
cse599o-basics = { path = "./cse599o-basics", editable = true } # Change this path to your assignment1-basics repo you want to use your own implementation!
[tool.pytest.ini_options]
log_cli = true
log_cli_level = "WARNING"
[[tool.uv.dependency-metadata]]
name = "flash-attn"
version = "2.7.4.post1"
requires-dist = ["torch", "einops", "setuptools"]