Open zeroskyx opened 3 years ago
I have the same problem
If it works for anyone, I've read to many posts, but only that work for me was downgrading TensorFlow.NET (0.150.0 -> 0.100.5) and TensorFlow.Keras (0.15.0 -> 0.10.5); CUDA 11.7 - cuDNN 8.9 QUADRO MOBILE T1000 8GB
<PackageReference Include="TensorFlow.NET" Version="0.100.5" /
But I found another problems (Could not locate zlibwapi.dll. Please make sure it is in your library path), like missing dll's (zlibwapi.dll), how I fix it was copying the file zlib.dll from C:\Program Files\NVIDIA Corporation\Nsight Systems 2022.1.3\host-windows-x64 and paste it on C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\bin
Another problem that I found after that was a compiling error (Tensorflow.TensorflowException: 'DNN library is not found.'), I search and forums only suggest that could be cuDNN version, so I downgrade again now from cuDNN 8.9 to cuDNN 8.4.1 (verify that is for CUDA 11.X) there I solve all the problems.
My current problem is OOM (so sad), but It works finally.
Hopefully it works for you.
Where I found the information and other links that could help: https://github.com/SciSharp/TensorFlow.NET/issues/1224 https://forum.image.sc/t/dnn-library-is-not-found-problem-with-tensorflow/81673 https://developer.nvidia.com/compute/cudnn/secure/8.4.1/local_installers/11.6/cudnn-windows-x86_64-8.4.1.50_cuda11.6-archive.zip (for windows) https://developer.nvidia.com/rdp/cudnn-archive https://stackoverflow.com/questions/72356588/could-not-locate-zlibwapi-dll-please-make-sure-it-is-in-your-library-path
Greetings,
running the Train a deep learning image classification model with ML.NET and TensorFlow example as-it throws the following exception:
Is this an issue with the sample, or with the ML.net implementation?