ImportError: cannot import name 'abs'

后端 未结 9 1860
我寻月下人不归
我寻月下人不归 2020-12-17 18:42

I got problem while doing object detection using tensorflow-gpu

I was follwing the youtube tutorials :https://www.youtube.com/watch?v=Rgpfk6eYxJA

I\'m trying

9条回答
  •  生来不讨喜
    2020-12-17 19:22

    Had same problem in windows 10 when installing using anaconda Navigator and selecting all packages available for tensorflow and keras.

    Solution was to clean up and install from command line, using "conda install" selecting only "gpu" packages:

    conda remove keras*
    conda remove tensorflow*
    conda remove protobuf 
    pip uninstall tensorflow*
    pip uninstall protobuf
    conda install tensorflow-gpu
    conda install keras-gpu
    

提交回复
热议问题