-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (55 loc) · 1.59 KB
/
Copy pathpyproject.toml
File metadata and controls
64 lines (55 loc) · 1.59 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
57
58
59
60
61
62
63
64
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "phantom-reasoner"
description = "Phantom Reasoner"
version = "0.0.0"
authors = [
{name="Anmol Kabra", email="anmol@cs.cornell.edu"},
{name="Yilun Yin", email="yy958@cornell.edu"},
{name="Albert Gong", email="agong@cs.cornell.edu"},
{name="Kamilė Stankevičiūtė", email="ks2448@cornell.edu"},
{name="Johann Lee", email="jcl354@cornell.edu"},
{name="Katie Luo", email="katieluo@stanford.edu"},
]
readme = "README.md"
requires-python = "==3.12.*"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"torch",
"vllm",
"deepspeed",
"trl[vllm] @ git+https://github.com/huggingface/trl.git@d24ec77dafa595de1f7f99be8e11771c29f62c7f",
"transformers",
"accelerate",
"datasets",
"peft",
"huggingface_hub[cli]",
"lighteval[math]",
"wandb",
"ujson", # needed for HotPotQA evaluation
"reasoning_gym==0.1.24",
"phantom-wiki[eval]>=1.0.3",
]
[project.optional-dependencies]
dev = [
"pre-commit",
"black",
]
[project.urls]
Homepage = "https://github.com/kilian-group/phantom-reasoning"
Issues = "https://github.com/kilian-group/phantom-reasoning/issues"
Repository = "https://github.com/kilian-group/phantom-reasoning.git"
[tool.uv]
index-strategy = "unsafe-best-match"
[[tool.uv.index]]
name = "pytorch-cu128"
url = "https://download.pytorch.org/whl/cu128"
explicit = true
[tool.uv.sources]
torch = { index = "pytorch-cu128" }