pyautoencoder 1.0.0__tar.gz → 1.0.2__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.
- {pyautoencoder-1.0.0 → pyautoencoder-1.0.2}/PKG-INFO +3 -10
- {pyautoencoder-1.0.0 → pyautoencoder-1.0.2}/README.md +1 -3
- {pyautoencoder-1.0.0 → pyautoencoder-1.0.2}/pyautoencoder.egg-info/PKG-INFO +3 -10
- {pyautoencoder-1.0.0 → pyautoencoder-1.0.2}/setup.py +2 -7
- {pyautoencoder-1.0.0 → pyautoencoder-1.0.2}/LICENSE +0 -0
- {pyautoencoder-1.0.0 → pyautoencoder-1.0.2}/pyautoencoder/__init__.py +0 -0
- {pyautoencoder-1.0.0 → pyautoencoder-1.0.2}/pyautoencoder/loss.py +0 -0
- {pyautoencoder-1.0.0 → pyautoencoder-1.0.2}/pyautoencoder/models/__init__.py +0 -0
- {pyautoencoder-1.0.0 → pyautoencoder-1.0.2}/pyautoencoder/models/autoencoder.py +0 -0
- {pyautoencoder-1.0.0 → pyautoencoder-1.0.2}/pyautoencoder/models/variational/__init__.py +0 -0
- {pyautoencoder-1.0.0 → pyautoencoder-1.0.2}/pyautoencoder/models/variational/stochastic_layers.py +0 -0
- {pyautoencoder-1.0.0 → pyautoencoder-1.0.2}/pyautoencoder/models/variational/vae.py +0 -0
- {pyautoencoder-1.0.0 → pyautoencoder-1.0.2}/pyautoencoder.egg-info/SOURCES.txt +0 -0
- {pyautoencoder-1.0.0 → pyautoencoder-1.0.2}/pyautoencoder.egg-info/dependency_links.txt +0 -0
- {pyautoencoder-1.0.0 → pyautoencoder-1.0.2}/pyautoencoder.egg-info/requires.txt +0 -0
- {pyautoencoder-1.0.0 → pyautoencoder-1.0.2}/pyautoencoder.egg-info/top_level.txt +0 -0
- {pyautoencoder-1.0.0 → pyautoencoder-1.0.2}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pyautoencoder
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.2
|
|
4
4
|
Summary: A Python package offering implementations of state-of-the-art autoencoder architectures in PyTorch.
|
|
5
5
|
Home-page: https://github.com/andrea-pollastro/pyautoencoder
|
|
6
6
|
Author: Andrea Pollastro
|
|
@@ -10,12 +10,7 @@ Classifier: Operating System :: OS Independent
|
|
|
10
10
|
Classifier: Intended Audience :: Science/Research
|
|
11
11
|
Classifier: Intended Audience :: Developers
|
|
12
12
|
Classifier: License :: OSI Approved :: MIT License
|
|
13
|
-
Classifier: Programming Language :: Python
|
|
14
|
-
Classifier: Programming Language :: Python :: 3.7
|
|
15
|
-
Classifier: Programming Language :: Python :: 3.8
|
|
16
|
-
Classifier: Programming Language :: Python :: 3.9
|
|
17
|
-
Classifier: Programming Language :: Python :: 3.10
|
|
18
|
-
Classifier: Programming Language :: Python :: 3.11
|
|
13
|
+
Classifier: Programming Language :: Python
|
|
19
14
|
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
20
15
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
21
16
|
Requires-Python: >=3.7
|
|
@@ -34,9 +29,7 @@ Dynamic: requires-dist
|
|
|
34
29
|
Dynamic: requires-python
|
|
35
30
|
Dynamic: summary
|
|
36
31
|
|
|
37
|
-
|
|
38
|
-
<img src="assets/logo_nobackground.png" alt="pyautoencoders_logo" width="500"/>
|
|
39
|
-
</p>
|
|
32
|
+

|
|
40
33
|
|
|
41
34
|
**pyautoencoder** is a lightweight Python package offering clean, minimal implementations of foundational autoencoder architectures in PyTorch.
|
|
42
35
|
It is designed for researchers, educators, and practitioners seeking a reliable base for experimentation, extension, or instruction.
|
|
@@ -1,6 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
<img src="assets/logo_nobackground.png" alt="pyautoencoders_logo" width="500"/>
|
|
3
|
-
</p>
|
|
1
|
+

|
|
4
2
|
|
|
5
3
|
**pyautoencoder** is a lightweight Python package offering clean, minimal implementations of foundational autoencoder architectures in PyTorch.
|
|
6
4
|
It is designed for researchers, educators, and practitioners seeking a reliable base for experimentation, extension, or instruction.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pyautoencoder
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.2
|
|
4
4
|
Summary: A Python package offering implementations of state-of-the-art autoencoder architectures in PyTorch.
|
|
5
5
|
Home-page: https://github.com/andrea-pollastro/pyautoencoder
|
|
6
6
|
Author: Andrea Pollastro
|
|
@@ -10,12 +10,7 @@ Classifier: Operating System :: OS Independent
|
|
|
10
10
|
Classifier: Intended Audience :: Science/Research
|
|
11
11
|
Classifier: Intended Audience :: Developers
|
|
12
12
|
Classifier: License :: OSI Approved :: MIT License
|
|
13
|
-
Classifier: Programming Language :: Python
|
|
14
|
-
Classifier: Programming Language :: Python :: 3.7
|
|
15
|
-
Classifier: Programming Language :: Python :: 3.8
|
|
16
|
-
Classifier: Programming Language :: Python :: 3.9
|
|
17
|
-
Classifier: Programming Language :: Python :: 3.10
|
|
18
|
-
Classifier: Programming Language :: Python :: 3.11
|
|
13
|
+
Classifier: Programming Language :: Python
|
|
19
14
|
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
20
15
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
21
16
|
Requires-Python: >=3.7
|
|
@@ -34,9 +29,7 @@ Dynamic: requires-dist
|
|
|
34
29
|
Dynamic: requires-python
|
|
35
30
|
Dynamic: summary
|
|
36
31
|
|
|
37
|
-
|
|
38
|
-
<img src="assets/logo_nobackground.png" alt="pyautoencoders_logo" width="500"/>
|
|
39
|
-
</p>
|
|
32
|
+

|
|
40
33
|
|
|
41
34
|
**pyautoencoder** is a lightweight Python package offering clean, minimal implementations of foundational autoencoder architectures in PyTorch.
|
|
42
35
|
It is designed for researchers, educators, and practitioners seeking a reliable base for experimentation, extension, or instruction.
|
|
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
|
|
|
2
2
|
|
|
3
3
|
setup(
|
|
4
4
|
name="pyautoencoder",
|
|
5
|
-
version="1.0.
|
|
5
|
+
version="1.0.2",
|
|
6
6
|
description="A Python package offering implementations of state-of-the-art autoencoder architectures in PyTorch.",
|
|
7
7
|
long_description=open("README.md", encoding="utf-8").read(),
|
|
8
8
|
long_description_content_type="text/markdown",
|
|
@@ -23,12 +23,7 @@ setup(
|
|
|
23
23
|
"Intended Audience :: Science/Research",
|
|
24
24
|
"Intended Audience :: Developers",
|
|
25
25
|
"License :: OSI Approved :: MIT License",
|
|
26
|
-
"Programming Language :: Python
|
|
27
|
-
"Programming Language :: Python :: 3.7",
|
|
28
|
-
"Programming Language :: Python :: 3.8",
|
|
29
|
-
"Programming Language :: Python :: 3.9",
|
|
30
|
-
"Programming Language :: Python :: 3.10",
|
|
31
|
-
"Programming Language :: Python :: 3.11",
|
|
26
|
+
"Programming Language :: Python",
|
|
32
27
|
"Topic :: Scientific/Engineering :: Artificial Intelligence",
|
|
33
28
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
34
29
|
],
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{pyautoencoder-1.0.0 → pyautoencoder-1.0.2}/pyautoencoder/models/variational/stochastic_layers.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|