Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/ispobock/simple-image-classification

PyTorch implementation for image classification on MNIST/CIFAR10/trashnet.
https://github.com/ispobock/simple-image-classification

image-classification pytorch

Last synced: 8 days ago
JSON representation

PyTorch implementation for image classification on MNIST/CIFAR10/trashnet.

Awesome Lists containing this project

README

        

# Simple Image Classification
PyTorch implementation for:
- LeNet5 on MINIST dataset
- LeNet5 and ResNet18 on CIFAR10 dataset
- LeNet5 and ResNet34 on [trashnet](https://github.com/garythung/trashnet) dataset

## Requirements
* python3
* pytorch
* torchvision

## Usage
- MINIST
```shell
python LeNet5_for_MINIST.py
```

- CIFAR10
```shell
python LeNet5_for_CIFAR10.py
python ResNet18_for_CIFAR10.py
```

- trashnet
```shell
python main.py
```