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
Sadly, due to their updates, the classification_models_3D code is not working anymore on the latest tensorflow/keras version, because the keras.engine submodule does not exist anymore but is required in multiple architectures of classification-models-3D.
change
from keras.engine import training
to
from keras.src.engine import training
helps to solve missing engine module, but now i have trouble with "VersionAwareLayers" in the next line. maybe a version change in TF and Keras can solve that issue: ZFTurbo/classification_models_3D#11 (comment)
Since September 2023, Keras has updated to Keras 3 and restructured some of its code base:
https://github.com/keras-team/keras/tree/b9be76a13a1edbea5e17a54bf91da386323222bf/keras
Sadly, due to their updates, the classification_models_3D code is not working anymore on the latest tensorflow/keras version, because the keras.engine submodule does not exist anymore but is required in multiple architectures of classification-models-3D.
See corresponding issue in the classification-models-3D repo:
ZFTurbo/classification_models_3D#16
The text was updated successfully, but these errors were encountered: