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
Per this overflow question one needs to modify /home/user/.local/lib/python3.8/site-packages/sparkdl/transformers/keras_applications.py
. This happened in databricks using v 10.3.
Have to change from keras.applications import inception_v3, xception, resnet50
to
from keras.applications import inception_v3, xception from tensorflow.keras.applications import resnet50
The text was updated successfully, but these errors were encountered:
Hi,
Per this overflow question one needs to modify
/home/user/.local/lib/python3.8/site-packages/sparkdl/transformers/keras_applications.py
. This happened in databricks using v 10.3.
Have to change
from keras.applications import inception_v3, xception, resnet50
to
from keras.applications import inception_v3, xception
from tensorflow.keras.applications import resnet50
The text was updated successfully, but these errors were encountered: