Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 853 Bytes

File metadata and controls

35 lines (26 loc) · 853 Bytes

React-Django Image Classifier

Webapp that classifies an uploaded image

Techs:

  • Frontend : React.js
  • Backend: Django Rest Api

Example Prediction

Output sample

Homepage after prediction

Historypage with all previous predictions

To clone this project

  1. Setup Frontend
$ cd frontend_react
$ npm install           
$ npm start              
  1. Setup Backend
$ cd backend_djangoapi
$ pip install requirements.txt
$ python manage.py makemigrations
$ python manage.py migrate
$ python manage.py runserver