-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
51 lines (44 loc) · 1.11 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
[tool.poetry]
name = "mlsae"
version = "0.1.0"
description = "Multi-Layer Sparse Autoencoders"
authors = ["Tim Lawson <hello@timlawson.dev>"]
readme = "README.md"
[tool.poetry.dependencies]
datasets = "^2.20.0"
einops = "^0.8.0"
fastapi = "^0.111.1"
huggingface-hub = {extras = ["cli"], version = "^0.24.6"}
jaxtyping = "^0.2.33"
lightning = "^2.3.3"
loguru = "^0.7.2"
matplotlib = "^3.9.1"
orjson = "^3.10.6"
pydantic = "^2.8.2"
pytest = "^8.3.2"
python = "^3.12"
simple-parsing = "^0.1.5"
torch = "^2.4.0"
transformers = "^4.42.4"
triton = { version = "^3.0.0", optional = true }
uvicorn = { extras = ["standard"], version = "^0.30.3" }
wandb = "^0.17.4"
zstandard = "^0.23.0"
tuned-lens = "^0.2.0"
[tool.poetry.extras]
triton = ["triton"]
[tool.poetry.group.dev.dependencies]
ruff = "^0.5.2"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q"
testpaths = ["tests"]
[tool.ruff]
extend-include = ["*.ipynb"]
target-version = "py312"
[tool.ruff.lint]
ignore = ["F722", "F821", "UP037"]
select = ["E", "F", "UP", "B", "SIM", "I"]
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core"]