“ ImportError: DLL load failed: The specified procedure could not be found”- while Digit Recognition using CNN in Python using Keras

后端 未结 2 1016
广开言路
广开言路 2020-12-12 04:46

I am trying to write a simple character recolonization code using convolutional neural network in python on windows. I am following this tutorial. But somehow I am having fo

相关标签:
2条回答
  • 2020-12-12 05:24

    Check import tensorflow.keras... or import keras...

    Keras switched to tensorflow.keras, which is a part of tensorflow>=1.10.0.

    Maybe it will help.

    0 讨论(0)
  • 2020-12-12 05:24

    Check if you have installed CUDA, CUDNN, added them to your PATH variable, and if you have correct versions of them for your Tensorflow version (each Tensorflow version supports only range of CUDA versions), check for example this tutorial for installation. Also, I guess you try to install it on windows (based on the DLL error), which is quite important to mention.

    0 讨论(0)
提交回复
热议问题