-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (51 loc) · 1.31 KB
/
Copy pathpyproject.toml
File metadata and controls
56 lines (51 loc) · 1.31 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
[project]
name = "drrik"
version = "0.1.0"
description = "A pytorch based framework for extracting interpretable features from the MLP layers of transformer-based Large Language Models using Sparse Autoencoders."
readme = "README.md"
authors = [
{ name = "Shawon Ashraf" },
]
license = { file = "LICENSE" }
requires-python = ">=3.12"
dependencies = [
"click>=8.1.0",
"datasets>=4.5.0",
"einops>=0.8.2",
"ipython>=9.10.0",
"jupyterlab>=4.5.4",
"lightning>=2.6.1",
"loguru>=0.7.3",
"matplotlib>=3.10.8",
"nnsight>=0.5.15",
"numpy>=2.4.2",
"pdoc>=16.0.0",
"pydantic>=2.12.5",
"pydantic-settings>=2.13.1",
"pyyaml>=6.0.0",
"scikit-image>=0.26.0",
"scikit-learn>=1.8.0",
"seaborn>=0.13.2",
"tensorboard>=2.20.0",
"torch>=2.10.0",
"torchvision>=0.25.0",
"transformers>=5.2.0",
"wandb>=0.25.0",
]
[project.urls]
"Homepage" = "https://rashomon-gh.github.io/drrik/drrik.html"
"Repository" = "https://github.com/rashomon-gh/drrik.git"
"Issues" = "https://github.com/rashomon-gh/drrik/issues"
[project.scripts]
drrik = "drrik.cli:main"
[dependency-groups]
dev = [
"pre-commit>=4.5.1",
"pytest>=9.0.2",
"ruff>=0.15.2",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["drrik"]