Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ModuleNotFoundError: no module named efficientnet.tfkeras

Tags:

python

keras

I attempted to do import segmentation_models as sm, but I got an error saying efficientnet was not found. So I then did pip install efficientnet and tried it again. I now get ModuleNotFoundError: no module named efficientnet.tfkeras, even though Keras is installed as I'm able to do from keras.models import * or anything else with Keras

how can I get rid of this error?

like image 528
user5739619 Avatar asked Aug 15 '19 00:08

user5739619


1 Answers

To install segmentation-models use the following command: pip install git+https://github.com/qubvel/segmentation_models

like image 141
Sriram Reddy Avatar answered Oct 21 '22 23:10

Sriram Reddy