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
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