Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/froukje/cnn-image-classification

This respository contains several examples of CNN image classification.
https://github.com/froukje/cnn-image-classification

cnn image-classification machine-learning pytorch transfer-learning

Last synced: about 1 month ago
JSON representation

This respository contains several examples of CNN image classification.

Awesome Lists containing this project

README

        

# Image Classification examples using CNNs (PyTorch)

* cats_dogs: binary classification
* data: https://www.kaggle.com/datasets/tongpython/cat-and-dog
* classify cats and dogs using two different networks:
1. self implemented CNN
2. Transfer Learning using the VGG16 model

* birds species: multiclass classification
* data: https://www.kaggle.com/datasets/gpiosenka/100-bird-species
* classify 400 bird species with transfer learning using the VGG16 model

* crops: multiclass classification
* data: https://www.kaggle.com/aman2000jaiswal/agriculture-crop-images
* The purpose of this exercise is to compare the workflow of Pytorch and Pytorch Lightning

* lego_figures: multiclass classification
* data: https://www.kaggle.com/ihelon/lego-minifigures-classification
* The purpose of this repository is to compare Tensorflow with PyTorch

* plant classification: multiclass classification
* data: https://www.kaggle.com/datasets/vbookshelf/v2-plant-seedlings-dataset/code
* An end-to-end notebook for image classification using PyTorch using transfer learning