3

from scipy.misc import imsave
import numpy as np
import time
from keras.applications import vgg16
from keras import backend as K

ImportError: No module named applications

I have installed Keras, and the other modules work well, why there is no "applications" module

Eugenie
  • 256
  • 1
  • 3
  • 6

1 Answers1

3

Install Keras-Applications using

 pip install Keras-Applications
Noosh
  • 762
  • 7
  • 7