Created
October 19, 2018 21:47
-
-
Save himanshurawlani/b95ba2ac067f7e2c15365c5a1bc243c9 to your computer and use it in GitHub Desktop.
Script to download InceptionV3 model in Keras
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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