cifar10-tools 0.5.0__tar.gz → 0.5.3__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.
- {cifar10_tools-0.5.0 → cifar10_tools-0.5.3}/PKG-INFO +4 -1
- {cifar10_tools-0.5.0 → cifar10_tools-0.5.3}/README.md +3 -0
- {cifar10_tools-0.5.0 → cifar10_tools-0.5.3}/pyproject.toml +1 -1
- {cifar10_tools-0.5.0 → cifar10_tools-0.5.3}/LICENSE +0 -0
- {cifar10_tools-0.5.0 → cifar10_tools-0.5.3}/src/cifar10_tools/__init__.py +0 -0
- {cifar10_tools-0.5.0 → cifar10_tools-0.5.3}/src/cifar10_tools/pytorch/__init__.py +0 -0
- {cifar10_tools-0.5.0 → cifar10_tools-0.5.3}/src/cifar10_tools/pytorch/data.py +0 -0
- {cifar10_tools-0.5.0 → cifar10_tools-0.5.3}/src/cifar10_tools/pytorch/evaluation.py +0 -0
- {cifar10_tools-0.5.0 → cifar10_tools-0.5.3}/src/cifar10_tools/pytorch/hyperparameter_optimization.py +0 -0
- {cifar10_tools-0.5.0 → cifar10_tools-0.5.3}/src/cifar10_tools/pytorch/plotting.py +0 -0
- {cifar10_tools-0.5.0 → cifar10_tools-0.5.3}/src/cifar10_tools/pytorch/training.py +0 -0
- {cifar10_tools-0.5.0 → cifar10_tools-0.5.3}/src/cifar10_tools/tensorflow/__init__.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: cifar10_tools
|
|
3
|
-
Version: 0.5.
|
|
3
|
+
Version: 0.5.3
|
|
4
4
|
Summary: Tools for training neural networks on the CIFAR-10 task with PyTorch and TensorFlow
|
|
5
5
|
License: GPLv3
|
|
6
6
|
License-File: LICENSE
|
|
@@ -34,6 +34,9 @@ Description-Content-Type: text/markdown
|
|
|
34
34
|
|
|
35
35
|
# PyTorch: CIFAR-10 Demonstration
|
|
36
36
|
|
|
37
|
+
[](https://github.com/gperdrizet/CIFAR10/actions/workflows/publish-to-pypi.yml)
|
|
38
|
+
[](https://github.com/gperdrizet/CIFAR10/actions/workflows/docs.yml)
|
|
39
|
+
|
|
37
40
|
A progressive deep learning tutorial for image classification on the CIFAR-10 dataset using PyTorch. This project demonstrates the evolution from basic deep neural networks to optimized convolutional neural networks with data augmentation. It also provides a set of utility functions as a PyPI package for use in other projects.
|
|
38
41
|
|
|
39
42
|
[View on PyPI](https://pypi.org/project/cifar10_tools) | [Documentation](https://gperdrizet.github.io/CIFAR10/)
|
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
# PyTorch: CIFAR-10 Demonstration
|
|
2
2
|
|
|
3
|
+
[](https://github.com/gperdrizet/CIFAR10/actions/workflows/publish-to-pypi.yml)
|
|
4
|
+
[](https://github.com/gperdrizet/CIFAR10/actions/workflows/docs.yml)
|
|
5
|
+
|
|
3
6
|
A progressive deep learning tutorial for image classification on the CIFAR-10 dataset using PyTorch. This project demonstrates the evolution from basic deep neural networks to optimized convolutional neural networks with data augmentation. It also provides a set of utility functions as a PyPI package for use in other projects.
|
|
4
7
|
|
|
5
8
|
[View on PyPI](https://pypi.org/project/cifar10_tools) | [Documentation](https://gperdrizet.github.io/CIFAR10/)
|
|
@@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
|
|
|
4
4
|
|
|
5
5
|
[tool.poetry]
|
|
6
6
|
name = "cifar10_tools"
|
|
7
|
-
version = "0.5.
|
|
7
|
+
version = "0.5.3"
|
|
8
8
|
description = "Tools for training neural networks on the CIFAR-10 task with PyTorch and TensorFlow"
|
|
9
9
|
authors = ["gperdrizet <george@perdrizet.org>"]
|
|
10
10
|
readme = "README.md"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{cifar10_tools-0.5.0 → cifar10_tools-0.5.3}/src/cifar10_tools/pytorch/hyperparameter_optimization.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|