-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (27 loc) · 1009 Bytes
/
pyproject.toml
File metadata and controls
30 lines (27 loc) · 1009 Bytes
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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "state-space-duality"
version = "0.1.0"
description = "Structured state-space duality experiments and small-scale Mamba comparisons."
readme = "README.md"
requires-python = ">=3.10"
authors = [{name = "Anonymous Author"}]
dependencies = [
"numpy>=1.24.0",
"matplotlib>=3.7.0",
"torch>=2.0.0",
"datasets>=2.14.0",
"einops>=0.6.0",
]
[project.scripts]
ssd-verify = "experiments.verify_ssd:main"
ssd-run-and-log = "experiments.run_and_log:main"
ssd-check-logs = "experiments.check_logs:main"
ts-exp-synthetic-ndecay = "time_series_experiments.exp_synthetic_ndecay:main"
ts-fig-synthetic-selective-vs-diag-ssd = "time_series_experiments.fig_synthetic_selective_vs_diag_ssd:main"
ts-plot-runs = "time_series_experiments.plot_runs:main"
[tool.setuptools.packages.find]
include = ["experiments*", "mamba_experiments*", "time_series_experiments*"]
exclude = ["flow_kl*", "outputs*"]