azula 0.0.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- azula-0.0.0/PKG-INFO +23 -0
- azula-0.0.0/README.md +3 -0
- azula-0.0.0/azula/__init__.py +3 -0
- azula-0.0.0/azula.egg-info/PKG-INFO +23 -0
- azula-0.0.0/azula.egg-info/SOURCES.txt +9 -0
- azula-0.0.0/azula.egg-info/dependency_links.txt +1 -0
- azula-0.0.0/azula.egg-info/requires.txt +2 -0
- azula-0.0.0/azula.egg-info/top_level.txt +1 -0
- azula-0.0.0/pyproject.toml +41 -0
- azula-0.0.0/requirements.txt +2 -0
- azula-0.0.0/setup.cfg +4 -0
azula-0.0.0/PKG-INFO
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: azula
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: Diffusion models in PyTorch
|
|
5
|
+
Author-email: The Probabilists <theprobabilists@gmail.com>
|
|
6
|
+
Project-URL: documentation, https://azula.readthedocs.io
|
|
7
|
+
Project-URL: source, https://github.com/probabilists/azula
|
|
8
|
+
Project-URL: tracker, https://github.com/probabilists/azula/issues
|
|
9
|
+
Keywords: torch,diffusion models,probability,distribution,generative,deep learning
|
|
10
|
+
Classifier: Intended Audience :: Developers
|
|
11
|
+
Classifier: Intended Audience :: Science/Research
|
|
12
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
13
|
+
Classifier: Natural Language :: English
|
|
14
|
+
Classifier: Operating System :: OS Independent
|
|
15
|
+
Classifier: Programming Language :: Python :: 3
|
|
16
|
+
Requires-Python: >=3.8
|
|
17
|
+
Description-Content-Type: text/markdown
|
|
18
|
+
Requires-Dist: numpy>=1.20.0
|
|
19
|
+
Requires-Dist: torch>=1.12.0
|
|
20
|
+
|
|
21
|
+
# Azula - Diffusion models in PyTorch
|
|
22
|
+
|
|
23
|
+
> In the [Avatar](https://wikipedia.org/wiki/Avatar:_The_Last_Airbender) cartoon, [Azula](https://wikipedia.org/wiki/Azula) is a powerful fire and lightning bender ⚡️
|
azula-0.0.0/README.md
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: azula
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: Diffusion models in PyTorch
|
|
5
|
+
Author-email: The Probabilists <theprobabilists@gmail.com>
|
|
6
|
+
Project-URL: documentation, https://azula.readthedocs.io
|
|
7
|
+
Project-URL: source, https://github.com/probabilists/azula
|
|
8
|
+
Project-URL: tracker, https://github.com/probabilists/azula/issues
|
|
9
|
+
Keywords: torch,diffusion models,probability,distribution,generative,deep learning
|
|
10
|
+
Classifier: Intended Audience :: Developers
|
|
11
|
+
Classifier: Intended Audience :: Science/Research
|
|
12
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
13
|
+
Classifier: Natural Language :: English
|
|
14
|
+
Classifier: Operating System :: OS Independent
|
|
15
|
+
Classifier: Programming Language :: Python :: 3
|
|
16
|
+
Requires-Python: >=3.8
|
|
17
|
+
Description-Content-Type: text/markdown
|
|
18
|
+
Requires-Dist: numpy>=1.20.0
|
|
19
|
+
Requires-Dist: torch>=1.12.0
|
|
20
|
+
|
|
21
|
+
# Azula - Diffusion models in PyTorch
|
|
22
|
+
|
|
23
|
+
> In the [Avatar](https://wikipedia.org/wiki/Avatar:_The_Last_Airbender) cartoon, [Azula](https://wikipedia.org/wiki/Azula) is a powerful fire and lightning bender ⚡️
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
azula
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61.0"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "azula"
|
|
7
|
+
description = "Diffusion models in PyTorch"
|
|
8
|
+
authors = [
|
|
9
|
+
{name = "The Probabilists", email = "theprobabilists@gmail.com"}
|
|
10
|
+
]
|
|
11
|
+
classifiers = [
|
|
12
|
+
"Intended Audience :: Developers",
|
|
13
|
+
"Intended Audience :: Science/Research",
|
|
14
|
+
"License :: OSI Approved :: MIT License",
|
|
15
|
+
"Natural Language :: English",
|
|
16
|
+
"Operating System :: OS Independent",
|
|
17
|
+
"Programming Language :: Python :: 3",
|
|
18
|
+
]
|
|
19
|
+
dynamic = ["dependencies", "version"]
|
|
20
|
+
keywords = [
|
|
21
|
+
"torch",
|
|
22
|
+
"diffusion models",
|
|
23
|
+
"probability",
|
|
24
|
+
"distribution",
|
|
25
|
+
"generative",
|
|
26
|
+
"deep learning",
|
|
27
|
+
]
|
|
28
|
+
readme = "README.md"
|
|
29
|
+
requires-python = ">=3.8"
|
|
30
|
+
|
|
31
|
+
[project.urls]
|
|
32
|
+
documentation = "https://azula.readthedocs.io"
|
|
33
|
+
source = "https://github.com/probabilists/azula"
|
|
34
|
+
tracker = "https://github.com/probabilists/azula/issues"
|
|
35
|
+
|
|
36
|
+
[tool.setuptools.dynamic]
|
|
37
|
+
dependencies = {file = "requirements.txt"}
|
|
38
|
+
version = {attr = "azula.__version__"}
|
|
39
|
+
|
|
40
|
+
[tool.setuptools.packages.find]
|
|
41
|
+
include = ["azula*"]
|
azula-0.0.0/setup.cfg
ADDED