pyautoencoder 1.0.2__tar.gz → 1.0.4__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.
@@ -1,11 +1,11 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pyautoencoder
3
- Version: 1.0.2
3
+ Version: 1.0.4
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
7
7
  License: MIT
8
- Keywords: autoencoder,vae,pytorch,deep learning,machine learning,representation learning,dimensionality reduction,generative models
8
+ Keywords: autoencoder,pytorch,deep learning,machine learning,representation learning,dimensionality reduction,generative models
9
9
  Classifier: Operating System :: OS Independent
10
10
  Classifier: Intended Audience :: Science/Research
11
11
  Classifier: Intended Audience :: Developers
@@ -30,9 +30,8 @@ Dynamic: requires-python
30
30
  Dynamic: summary
31
31
 
32
32
  ![logo](https://raw.githubusercontent.com/andrea-pollastro/pyautoencoder/main/assets/logo_nobackground.png)
33
-
34
- **pyautoencoder** is a lightweight Python package offering clean, minimal implementations of foundational autoencoder architectures in PyTorch.
35
- It is designed for researchers, educators, and practitioners seeking a reliable base for experimentation, extension, or instruction.
33
+ [![PyPI version](https://img.shields.io/pypi/v/pyautoencoder.svg?color=orange&label=pypi)](https://pypi.org/project/pyautoencoder/)
34
+ [![License](https://img.shields.io/github/license/andrea-pollastro/pyautoencoder.svg)](https://opensource.org/licenses/MIT)
36
35
 
37
36
  ## 📦 Installation
38
37
 
@@ -1,7 +1,6 @@
1
1
  ![logo](https://raw.githubusercontent.com/andrea-pollastro/pyautoencoder/main/assets/logo_nobackground.png)
2
-
3
- **pyautoencoder** is a lightweight Python package offering clean, minimal implementations of foundational autoencoder architectures in PyTorch.
4
- It is designed for researchers, educators, and practitioners seeking a reliable base for experimentation, extension, or instruction.
2
+ [![PyPI version](https://img.shields.io/pypi/v/pyautoencoder.svg?color=orange&label=pypi)](https://pypi.org/project/pyautoencoder/)
3
+ [![License](https://img.shields.io/github/license/andrea-pollastro/pyautoencoder.svg)](https://opensource.org/licenses/MIT)
5
4
 
6
5
  ## 📦 Installation
7
6
 
@@ -1,11 +1,11 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pyautoencoder
3
- Version: 1.0.2
3
+ Version: 1.0.4
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
7
7
  License: MIT
8
- Keywords: autoencoder,vae,pytorch,deep learning,machine learning,representation learning,dimensionality reduction,generative models
8
+ Keywords: autoencoder,pytorch,deep learning,machine learning,representation learning,dimensionality reduction,generative models
9
9
  Classifier: Operating System :: OS Independent
10
10
  Classifier: Intended Audience :: Science/Research
11
11
  Classifier: Intended Audience :: Developers
@@ -30,9 +30,8 @@ Dynamic: requires-python
30
30
  Dynamic: summary
31
31
 
32
32
  ![logo](https://raw.githubusercontent.com/andrea-pollastro/pyautoencoder/main/assets/logo_nobackground.png)
33
-
34
- **pyautoencoder** is a lightweight Python package offering clean, minimal implementations of foundational autoencoder architectures in PyTorch.
35
- It is designed for researchers, educators, and practitioners seeking a reliable base for experimentation, extension, or instruction.
33
+ [![PyPI version](https://img.shields.io/pypi/v/pyautoencoder.svg?color=orange&label=pypi)](https://pypi.org/project/pyautoencoder/)
34
+ [![License](https://img.shields.io/github/license/andrea-pollastro/pyautoencoder.svg)](https://opensource.org/licenses/MIT)
36
35
 
37
36
  ## 📦 Installation
38
37
 
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
2
2
 
3
3
  setup(
4
4
  name="pyautoencoder",
5
- version="1.0.2",
5
+ version="1.0.4",
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",
@@ -14,7 +14,7 @@ setup(
14
14
  "torch>=2.0.0"
15
15
  ],
16
16
  keywords=[
17
- "autoencoder", "vae", "pytorch", "deep learning",
17
+ "autoencoder", "pytorch", "deep learning",
18
18
  "machine learning", "representation learning", "dimensionality reduction",
19
19
  "generative models"
20
20
  ],
File without changes
File without changes