We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
any idea how i can get over this error in colab?
i am trying:
!pip install git+https://github.com/qubvel/classification_models.git from classification_models.keras import Classifiers
same error happens with
!pip install git+https://github.com/qubvel/classification_models.git from classification_models.tfkeras import Classifiers
as well
The text was updated successfully, but these errors were encountered:
you can change from classification_models.keras import Classifiers to from classification_models import Classifiers That works for me.
from classification_models.keras import Classifiers
from classification_models import Classifiers
Sorry, something went wrong.
Hi @DuHongqin, I followed what you said but I ran into this error. Can you please help?
ImportError: cannot import name 'Classifiers' from 'classification_models' (/usr/local/lib/python3.10/dist-packages/classification_models/init.py)
No branches or pull requests
any idea how i can get over this error in colab?
i am trying:
same error happens with
as well
The text was updated successfully, but these errors were encountered: