You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 3, 2022. It is now read-only.
In the doc has EfficientNet but cannot use it. When I coding it show me an error AttributeError: module 'tensorflow.keras.applications' has no attribute 'EfficientNetB0' .
I use TensorFlow 2.2.0 and Keras 2.3.0 on Google Colab.
I think they not done this EfficientNe yet or they had done but not published because I go to Tensorflow and Keras repository, I didn't found the code.
The text was updated successfully, but these errors were encountered:
You can try to copy "efficientnet.py" file in your local "keras_applications" folder. For example I use anaconda to build keras project: C:\user\AppData\Local\conda\conda\envs\Your Environment Name\Lib\site-packages\keras_applications.
from keras_applications.efficientnet import EfficientNetB0
model = EfficientNetB0(
weights='imagenet',
include_top=False,
input_shape=(128, 128, 3),
backend=keras.backend,
layers=keras.layers,
models=keras.models,
utils=keras.utils)
In the doc has EfficientNet but cannot use it. When I coding it show me an error
AttributeError: module 'tensorflow.keras.applications' has no attribute 'EfficientNetB0'
.I use TensorFlow 2.2.0 and Keras 2.3.0 on Google Colab.
I think they not done this EfficientNe yet or they had done but not published because I go to Tensorflow and Keras repository, I didn't found the code.
The text was updated successfully, but these errors were encountered: