-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
55 lines (50 loc) · 1.45 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
[tool.poetry]
name = "circuits-benchmark"
version = "0.1.0"
description = "A benchmark for mechanistic discovery of circuits in Transformers"
authors = ["Iván Arcuschin Moreno <[email protected]>", "Niels uit de Bos <[email protected]>"]
readme = "README.md"
packages = [{include = "circuits_benchmark"}]
[tool.poetry.dependencies]
python = "^3.10"
numpy = [{ version = "^1.21", python = "<3.10" },
{ version = "^1.26", python = ">=3.10" }]
torch = ">=2.2.0"
datasets = "^2.17"
transformers = "^4.37.0"
tokenizers = "^0.15.0"
tqdm = "^4.66"
pandas = "2.1.4"
wandb = "^0.16"
torchtyping = "^0.1.4"
huggingface-hub = "^0.24.0"
cmapy = "^0.6.6"
networkx = "^3.1"
plotly = "^5.12.0"
kaleido = "0.2.1"
pygraphviz = "^1.11"
transformer-lens = "1.19.0"
typer = "^0.9.0"
cloudpickle = "^3.0.0"
argparse-dataclass = "^2.0.0"
chex = "^0.1.85"
dm-haiku = "^0.0.11"
dataframe-image = "^0.2.3"
mlcroissant = "^1.0.5"
matplotlib = "3.8.2"
auto-circuit = { git = "https://github.com/FlyingPumba/auto-circuit.git" }
tracr = { git = "https://github.com/FlyingPumba/tracr.git" }
iit = { git = "https://github.com/cybershiptrooper/iit.git" }
acdc = { git = "https://github.com/FlyingPumba/Automatic-Circuit-Discovery.git" }
[tool.poetry.group.dev.dependencies]
pytest = "^8.2.2"
pytest-cov = "^4.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 120
[tool.isort]
profile = "black"
line_length = 120
skip_gitignore = true