Skip to content
New issue

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

Submodule dependency issue (classification-model-3D & Keras 3) #213

Closed
muellerdo opened this issue Nov 2, 2023 · 2 comments
Closed

Submodule dependency issue (classification-model-3D & Keras 3) #213

muellerdo opened this issue Nov 2, 2023 · 2 comments
Labels
bug Something isn't working help wanted Extra attention is needed

Comments

@muellerdo
Copy link
Member

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

@muellerdo muellerdo added bug Something isn't working help wanted Extra attention is needed labels Nov 2, 2023
@krekiehn
Copy link

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)

@muellerdo
Copy link
Member Author

Fixed & released in version v0.9.0.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working help wanted Extra attention is needed
Projects
None yet
Development

No branches or pull requests

2 participants