Skip to content

Instantly share code, notes, and snippets.

@himanshurawlani
Created October 19, 2018 21:47
Show Gist options
  • Save himanshurawlani/b95ba2ac067f7e2c15365c5a1bc243c9 to your computer and use it in GitHub Desktop.
Save himanshurawlani/b95ba2ac067f7e2c15365c5a1bc243c9 to your computer and use it in GitHub Desktop.
Script to download InceptionV3 model in Keras
from keras.applications.inception_v3 import InceptionV3
from keras.layers import Input
inception_model = InceptionV3(weights='imagenet', input_tensor=Input(shape=(224, 224, 3)))
inception_model.save('inception.h5')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment