We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
TensorFlow 2.2 folded the keras_applications package completely into TensorFlow: tensorflow/tensorflow@23c3bda
This means that from keras_applications.imagenet_utils import _obtain_input_shape fails to find the module unless this is installed separately.
from keras_applications.imagenet_utils import _obtain_input_shape
This code should hence be updated to use tf.keras.applications or the dependency on that old package should be documented.
tf.keras.applications
The text was updated successfully, but these errors were encountered:
No branches or pull requests
TensorFlow 2.2 folded the keras_applications package completely into TensorFlow: tensorflow/tensorflow@23c3bda
This means that
from keras_applications.imagenet_utils import _obtain_input_shape
fails to find the module unless this is installed separately.This code should hence be updated to use
tf.keras.applications
or the dependency on that old package should be documented.The text was updated successfully, but these errors were encountered: