RahulGupta-Reflektion
Results
1
issues of
RahulGupta-Reflektion
I used the following code following example in Readme.md ``` base_model = InceptionV3(include_top=False, weights='imagenet') model = Model(input=base_model.input, output=base_model.get_layer('pool_3').output) img_path = 'elephant.jpg' img = image.load_img(img_path, target_size=(224, 224)) x = image.img_to_array(img) x...