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
I want to change in some models then I use directly your codes.
when I want import it with below code: from classification_models_3D.classification_models_3D.kkeras import Classifiers
this error is happend: cannot import name 'get_submodules_from_kwargs' from 'classification_models_3D' (unknown location)
some where like resnext.py you have 'from classification_models_3D import get_submodules_from_kwargs' that I changed them too from .. import get_submodules_from_kwargs and the problem is solved.
thanks
The text was updated successfully, but these errors were encountered:
First, I wonder why you have to use the following line: from classification_models_3D.classification_models_3D.kkeras import Classifiers
and not: from classification_models_3D.kkeras import Classifiers
You should put internal folder classification_models_3D which is located inside classification_models_3D into root of your code. In this case you won't need any changes.
I want to change in some models then I use directly your codes.
when I want import it with below code:
from classification_models_3D.classification_models_3D.kkeras import Classifiers
this error is happend:
cannot import name 'get_submodules_from_kwargs' from 'classification_models_3D' (unknown location)
some where like
resnext.py
you have 'from classification_models_3D import get_submodules_from_kwargs' that I changed them toofrom .. import get_submodules_from_kwargs
and the problem is solved.thanks
The text was updated successfully, but these errors were encountered: