forked from OSU-NLP-Group/GrokkedTransformer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
42 lines (38 loc) · 972 Bytes
/
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "transformer_reasoning"
version = "0.0.1"
authors = [{ name = "David Johnston", email = "[email protected]" }]
description = "Experiments in transformer reasoning"
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"torch==2.5.1",
"transformers==4.47.0",
"datasets==3.1.0",
"tensorboard==2.18.0",
"tqdm==4.67.1",
"openai==1.57.0",
"accelerate==1.2.0",
"matplotlib==3.9.3",
"tokenizers==0.21.0",
"schedulefree==1.4",
"jax==0.4.36",
"jaxlib==0.4.36",
"flax==0.10.2",
"optax==0.2.4",
"scipy==1.14.1",
"seaborn==0.13.2",
"mup==1.0.0",
"torchvision==0.20.1",
"statsmodels==0.14.4"
]
requires-python = ">=3.10"
[tool.setuptools.packages.find]
where = ["src"]