-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (57 loc) · 1.61 KB
/
pyproject.toml
File metadata and controls
64 lines (57 loc) · 1.61 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
57
58
59
60
61
62
63
64
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "explaind"
version = "0.0.2"
description = "A unified framework for attributing model components, data, and training dynamics to model behavior."
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.12"
authors = [
{ name = "Florian Eichin", email = "feichin@cis.lmu.de" },
]
keywords = [
"neural networks",
"interpretability",
"explainability",
"training dynamics",
"data attribution",
"model attribution",
"kernel machines"
]
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
"Programming Language :: Python",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"numpy>=2.2.6",
"plotly>=6.1.1",
"torch>=2.7.0",
"torchvision>=0.22.0",
"tqdm>=4.67.1",
"umap-learn>=0.5.7",
"tensorboard==2.19.0",
"pandas==2.2.3",
]
[tool.setuptools.packages.find]
include = ["explaind*"]
exclude = ["tests", "experiments"]
[tool.ruff]
line-length = 120
[tool.ruff.lint]
extend-select = ["E501"]
[project.urls]
Documentation = "https://github.com/mainlp/explaind"
Homepage = "https://github.com/mainlp/explaind"
Issues = "https://github.com/mainlp/explaind/issues"
Repository = "https://github.com/mainlp/explaind"