From a61638ed40480b2b94fc22b9c239a08bbcad47f1 Mon Sep 17 00:00:00 2001 From: Lucas Serven Date: Mon, 30 Jan 2017 18:27:18 -0800 Subject: [PATCH] README: add numpy to README examples This commit makes the README more thorough by adding `import numpy as np` to the examples so that they are complete and self-contained. --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 464377e..a892daa 100644 --- a/README.md +++ b/README.md @@ -17,6 +17,7 @@ Pre-trained weights can be automatically loaded upon instantiation (`weights='im ### Classify images ```python +import numpy as np from resnet50 import ResNet50 from keras.preprocessing import image from imagenet_utils import preprocess_input, decode_predictions @@ -37,6 +38,7 @@ print('Predicted:', decode_predictions(preds)) ### Extract features from images ```python +import numpy as np from vgg16 import VGG16 from keras.preprocessing import image from imagenet_utils import preprocess_input @@ -55,6 +57,7 @@ features = model.predict(x) ### Extract features from an arbitrary intermediate layer ```python +import numpy as np from vgg19 import VGG19 from keras.preprocessing import image from imagenet_utils import preprocess_input