-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
49 lines (46 loc) · 1.07 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
[project]
name = "vdm"
version = "0.0.0"
description = "Variational diffusion models in JAX."
readme = "README.md"
requires-python ="~=3.12"
license = {file = "LICENSE"}
authors = [
{name = "Jed Homer", email = "[email protected]"},
]
keywords = [
"jax",
"deep-learning",
"generative-models",
"diffusion-models",
"score-based-diffusion"
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
urls = {repository = "https://github.com/homerjed/vdm"}
dependencies = [
'jax>=0.4.28',
'equinox>=0.11.5',
'diffrax>=0.6.0',
'optax>=0.2.3',
'ml_collections',
'numpy',
'matplotlib',
'einops>=0.8.0',
'torch>=2.0',
'torchvision',
'cloudpickle',
'scikit-learn',
'tqdm',
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build]
include = ["vdm/*"]