Skip to content

Instantly share code, notes, and snippets.

View himanshurawlani's full-sized avatar

Himanshu Rawlani himanshurawlani

View GitHub Profile
@himanshurawlani
himanshurawlani / download_inceptionv3_model.py
Created October 19, 2018 21:47
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')