For deep learning engineer and server engineer, this slides illustrates how to create VGG image recognition API with Flask, Keras in Python, which is very simple and easy to get started. All code shown in slides can be found in gist
https://gist.github.com/asterisk37n/e139272963f1bd659fcd532a35c59978
This slides is used in a lecture done on June 1, at Shibuya.
1 of 63
Download to read offline
More Related Content
Lecuture on Deep Learning API
1. Deep Learning
API By Keras
and Flask
On June 1, 2018 at Shibuya
supported by CoLab
WATANABE Naoki
42. Kerasでは一部の学習済みモデルが簡単に利用可能
from keras.applications.xception import Xception
from keras.applications.vgg16 import VGG16
from keras.applications.vgg19 import VGG19
from keras.applications.resnet50 import ResNet50
from keras.applications.inception_v3 import InceptionV3
model = VGG16(weights='imagenet', include_top=True)
42