-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
51 lines (48 loc) · 1.15 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
[project]
name = "sbgm"
version = "0.0.21"
description = "Score-based 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/sbgm"}
dependencies = [
'jax==0.4.33',
'equinox==0.11.7',
'diffrax==0.6.0',
'optax==0.2.3',
'beartype==0.19.0',
'ml_collections',
'numpy==1.26.4',
'matplotlib==3.9.1',
'einops>=0.8.0',
'torch==2.4.0',
'torchvision==0.19.0',
'cloudpickle==3.0.0',
'tqdm==4.66.4',
'powerbox==0.8.1',
'einx==0.3.0'
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build]
include = ["sbgm/*"]