[Solved] Could not create cudnn handle: CUDNN_STATUS_INTERNAL_ERROR

Enter the following code at the beginning of the code to solve the problem:

from tensorflow.compat.v1 import ConfigProto
from tensorflow.compat.v1 import InteractiveSession

config = ConfigProto()
config.gpu_options.allow_growth = True
session = InteractiveSession(config=config)


Read More: