-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (52 loc) · 1.14 KB
/
Copy pathpyproject.toml
File metadata and controls
56 lines (52 loc) · 1.14 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
52
53
54
55
56
[project]
name = "reasoning-pretraining-alignment"
version = "0.1.0"
description = "Reasoning-aware pretraining reduces alignment cost study"
requires-python = ">=3.10"
dependencies = [
"torch>=2.2.0",
"transformers>=4.45.0",
"accelerate>=0.27.0",
"datasets>=2.18.0",
"tokenizers>=0.19.0",
"safetensors>=0.4.2",
"sentencepiece>=0.2.0",
"trl>=0.8.0",
"peft>=0.9.0",
"bitsandbytes>=0.43.0",
"wandb>=0.16.3",
"hydra-core>=1.3.2",
"omegaconf>=2.3.0",
"tensorboard>=2.16.2",
"evaluate>=0.4.1",
"scikit-learn>=1.4.0",
"scipy>=1.12.0",
"rouge-score>=0.1.2",
"numpy>=1.24.3",
"pandas>=2.2.0",
"matplotlib>=3.8.2",
"seaborn>=0.13.2",
"tqdm>=4.66.1",
"rich>=13.7.0",
"typer>=0.9.0",
"pydantic>=2.6.0",
"einops>=0.7.0",
"jupyter>=1.0.0",
"ipython>=8.0.0",
]
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["src"]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"black>=23.0.0",
"ruff>=0.1.0",
"mypy>=1.0.0",
]
flash = [
"flash-attn>=2.5.5",
"triton>=2.2.0",
]