-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
64 lines (56 loc) · 1.6 KB
/
pyproject.toml
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
[tool.poetry]
name = "reprpo"
version = "0.1.0"
description = ""
authors = ["wassname <[email protected]>"]
readme = "README.md"
repository = "https://github.com/wassname/repr-preference-optimization"
[tool.poetry.dependencies]
python = ">=3.10,<4.0"
tqdm = "^4.66.4"
transformers = "^4.43.2"
datasets = "^2.20.0"
tensor-parallel = "^1.2.4"
torch = { version = ">=2.3.1+cu121", source = "pytorch" }
ipywidgets = "^8.1.3"
# trl = "^0.9.4"
bitsandbytes = "0.43.1"
accelerate = "0.32.1"
einops = "^0.8.0"
jaxtyping = "^0.2.19"
setuptools = "^70.2.0"
matplotlib = "^3.9.1"
peft = "^0.12.0"
wandb = "^0.17.4"
tabulate = "^0.9.0"
jinja2 = "^3.1.4"
pyarrow = "^17.0.0"
scikit-learn = "^1.5.1"
baukit = { git = "https://github.com/wassname/baukit.git" }
loguru = "^0.7.2"
# https://github.com/wassname/open_pref_eval
# open-pref-eval = {path = "/media/wassname/SGIronWolf/projects5/elk/open_pref_eval", develop = true}
open-pref-eval = { git = "https://github.com/wassname/open_pref_eval", branch = "main", develop = true }
lightning = "^2.4.0"
tyro = "^0.8.10"
colorama = "^0.4.6"
optuna-dashboard = "^0.16.2"
optuna = "^4.0.0"
optuna-integration = "^4.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[[tool.poetry.source]]
name = "pytorch"
url = "https://download.pytorch.org/whl/cu121"
priority = "explicit"
[tool.poetry.group.dev.dependencies]
ipykernel = "^6.25.2"
ruff = "^0.1.3"
pylama = "^8.4.1"
pytest = "^8.3.3"
pytest-beartype = "^0.1.0"
[tool.pytest.ini_options]
addopts = "--jaxtyping-packages=reprpo,beartype.beartype --beartype-packages='reprpo'"
[virtualenvs]
in-project = true