-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (32 loc) · 1.17 KB
/
Copy pathpyproject.toml
File metadata and controls
39 lines (32 loc) · 1.17 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "LSVI"
version = "0.0.1"
description = "Variational inference package with JAX."
readme = "README.md"
requires-python = ">=3.12"
license = { text = "Apache-2.0" }
authors = [
{ name = "Yvann Le Fay", email = "yvann.lefay@ensae.fr" },
]
dependencies = [
"jax", #levy-stable-jax is not yet compatible with jax>=0.5
"particles>=0.4", # running experiments for comparing with SMC
"pymc", # running experiments for comparing with ADVI
"blackjax", # running experiments for comparing with stochastic gradient descent
"timeit-decorator", # required for benchmarking
]
[tool.setuptools.packages.find]
where = ["src"]
[project.optional-dependencies]
test = [
"pytest", # testing
"scikit-learn", # benchmarking logistic regression on the MNIST dataset
"scipy", # required for QMC
"levy-stable-jax", # required for the levy-stable implementation of LSVI, required by the Fowler's Toad displacement model
"gmmvi", #required for gmmvi experiment on pima
"ucimlrepo", # required to download Census dataset
"polars", # required for the census dataset
]