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

https://github.com/tom-uchida/image_classifier_application

This is my first application with deep learning.
https://github.com/tom-uchida/image_classifier_application

classification cnn deep-learning django flask keras

Last synced: 3 months ago
JSON representation

This is my first application with deep learning.

Awesome Lists containing this project

README

          

# Image_Classifier_Application

## Overview
Predict the club team from an football player image

![sample](./assets/sample.png)

## Usage

### Step0. Prepare a large number of images

### Step1. Create training and test data
```
python generate_train_and_test_data_224.py
```
- Save data(.npy file)

### Step2. Train using CNN(VGG16)
```
python cnn_vgg16_transfer.py
```
- Save model(.h5 file)

### Step3. Run the application & Access the website
```
cd myApp
python manage.py runserver
open http://127.0.0.1:8000/club_team_classifier/
```