-
Notifications
You must be signed in to change notification settings - Fork 74
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (54 loc) · 1.4 KB
/
pyproject.toml
File metadata and controls
58 lines (54 loc) · 1.4 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
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "ttt-discover"
version = "0.1.0"
description = "Learning to Discover at Test Time - RL at test time for LLMs"
readme = "README.md"
license = "MIT"
requires-python = ">=3.10"
authors = [
{ name = "Mert Yuksekgonul" },
{ name = "Daniel Koceja" },
{ name = "Xinhao Li" },
{ name = "Federico Bianchi" },
]
keywords = ["reinforcement-learning", "llm", "test-time-training", "tinker"]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Operating System :: OS Independent",
]
dependencies = [
"chz>=0.3",
"ray[client]>=2.50",
"tinker>=0.7",
"torch>=2.6",
"transformers>=4.56.2",
"numpy>=1.24",
"submitit>=1.5",
"hydra-core>=1.3",
"wandb>=0.23",
"tiktoken>=0.12",
"safetensors>=0.4",
"huggingface-hub>=0.36",
"datasets>=2.14",
"tqdm>=4.65",
"cloudpickle>=3.0",
"fsspec>=2024.1",
"python-dotenv>=1.0",
"termcolor>=3.3.0",
]
[project.optional-dependencies]
math = [
"cvxpy>=1.7.4",
"scipy>=1.15.3",
]
[tool.setuptools.packages.find]
where = ["."]
include = ["ttt_discover*"]