Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

README: add numpy to README examples #36

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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
Expand Down