-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
54 lines (48 loc) · 1.07 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "sae_auto_interp"
version = "0.1.0"
description = "Automated Interpretability"
readme = "README.md"
requires-python = ">=3.9"
keywords = ["interpretability", "explainable-ai"]
dependencies = [
"accelerate", # For device_map in from_pretrained
"blobfile",
"datasets",
"einops",
"hf_transfer",
"httpx==0.23.3",
"huggingface-hub",
"loguru",
"natsort", # For sorting module names
"nnsight",
"orjson",
"openai",
"pillow==10.4.0",
"safetensors",
"simple_parsing",
"sglang[all]==0.3.0",
"torch>=2.1.0",
"torchtyping",
"torchvision",
"transformers==4.45.2",
"umap-learn[plot]",
"plotly",
"opencv-python",
"torchmetrics"
]
[project.optional-dependencies]
generation = [
"diffuser"
]
[tool.pyright]
include = ["sae_auto_interp*"]
reportPrivateImportUsage = false
[tool.setuptools.packages.find]
include = ["sae_auto_interp*"]
[tool.isort]
profile = "black"
src_paths = ["sae_auto_interp", "test"]