#!/usr/bin/env python # coding: utf-8 # # Image Recognition Using Keras-ResNet50 # # ## About this project # We're going to use a pretrained model included in Keras to do image recognition. # Keras comes with several image recognition models including # * VGG (Visual Geometry Group at the University of Oxford) # * ResNet50 (MS research) # * Inception-v3 (Google) # * Xception (Keras) # # We'll use the ResNet50 in this project. This paper describes ResNets. # Check out this link for details on the model and ResNets in general. # # We have a few images to pick from to see how well the image classifier performs # # # ## Import and set up model # In[1]: import numpy as np # from tensorflow.keras import backend from keras.preprocessing import image from tensorflow.keras.applications import resnet50 #