An open API service indexing awesome lists of open source software.

https://github.com/blueskyson/cifar10-vgg16

PyTorch VGG16 for CIFAR10.
https://github.com/blueskyson/cifar10-vgg16

cifar10 deep-learning python pytorch vgg16

Last synced: 7 months ago
JSON representation

PyTorch VGG16 for CIFAR10.

Awesome Lists containing this project

README

          

# cifar10-vgg16

PyTorch VGG16 for CIFAR10.

To train: `python vgg16train.py`

Here are some changeable variables in `vgg16train.py`:

```python
BATCH_SIZE = 128
LEARNING_RATE = 0.01
EPOCH = 20
FILENAME = "vgg16.pth"
```

You can also download [pre-trained model](https://github.com/blueskyson/cifar10-vgg16/releases) from releases.

To execute test application: `python main.py`

## Screenshots

![](./images/1.png)

- Show random labeled images
![](./images/2.png)
- Show training accuracy
![](./images/3.png)
- Show test
![](./images/4.png)