RahulGupta-Reflektion
Results
1
comments of
RahulGupta-Reflektion
I got this code to work ``` model = InceptionV3(weights='imagenet', include_top=False) img = image.load_img(img_path, target_size=(224, 224)) x = image.img_to_array(img) x = np.expand_dims(x, axis=0) x = preprocess_input(x) features = model.predict(x) ```...