Giter Club home page Giter Club logo

image-classification-deep-cnn-model-keras-tensorflow---flask-'s Introduction

Image Classification Deep Learning CNN REST API (Keras TensorFlow + Flask)

This repository contains the code for Building a simple Keras + deep learning REST API, published on the Keras.io blog with minor changes.

The method covered here is intended to be instructional. It is not meant to be production-level and capable of scaling under heavy load.

Getting started

I assume you already have Keras (and a supported backend) and TensorFlow installed on your system. From there you need to install Flask and requests:

$ pip install flask gevent requests

*NOTES

  • the original code has had all import statements of from keras updated to tensorFlow.keras
  • ignore cudart64_110.dll GPU error
  • may need to:
$ pip uninstall tf-nightly

and

$ pip install tensorflow --upgrade --force-reinstall

if receiving keras.utils.generic_utils module AttributeError.

Next, clone the repo:

$ git clone https://github.com/artoflearning/Image-Classification-Deep-CNN-Model-Keras-TensorFlow---Flask-.git

Starting the Keras server

Below you can see the image we wish to classify, a dog, but more specifically a Shih-Tzu:

dog

The Flask + Keras server can be started by running:

$ python run_keras_server.py 
Using TensorFlow backend.
 * Loading Keras model and Flask starting server...please wait until server has fully started
...
 * Running on http://127.0.0.1:5000

You can now access the REST API via http://127.0.0.1:5000.

Submitting requests to the Keras server

Requests can be submitted via cURL:

$ curl -X POST -F [email protected] 'http://localhost:5000/predict'
{
  "predictions": [
    {
      "label": "Shih-Tzu", 
      "probability": 0.7272
    }, 
    {
      "label": "Pekinese", 
      "probability": 
  "success": true
}

Or programmatically:

$ python simple_request.py 
1. Shih-Tzu: 0.7272
2. Pekinese: 0.1508
3. Lhasa: 0.0415
4. Japanese_spaniel: 0.0225
5. Sussex_spaniel: 0.0165

image-classification-deep-cnn-model-keras-tensorflow---flask-'s People

Contributors

artoflearning avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.