dlquantizer workflow failed when running example code
이전 댓글 표시
I have tried running the "Quantize a Neural Network" example from this link -- https://www.mathworks.com/help/deeplearning/ref/dlquantizer.html, but I receive the following error when running the validate function:
Error using dlquantizer/validate
dlquantizer workflow failed.
I have tried a few other example codes and no matter what it is failing in the same place. I am unable to pause in the debugger as the error seems to occur while the function is running dos commands.
KFA
- .m file containing the script I am running with the complete example, failing on line 67
- .mat file containing the trained network and both IMDS (though these are generated by the script)
- .txt file containing output from the 'ver' command
@Asvin Kumar here is the information you requested re: https://www.mathworks.com/matlabcentral/answers/770448-error-dlquantizer-workflow-failed-deep-network-quantizer-app
댓글 수: 3
Dor Rubin
2021년 4월 13일
Hi Will,
Can you report the output of the script below? My guess is that there is an issue with the gpu setup like a missing dependency or CUDA compute capability of 6.1 or 6.3 and higher (https://www.mathworks.com/help/deeplearning/ug/quantization-workflow-prerequisites.html)
>> gpuDevice
>> gpuEnvObj = coder.gpuEnvConfig;
>> gpuEnvObj.GpuId = 1;
>> gpuEnvObj.BasicCodegen = 1;
>> gpuEnvObj.BasicCodeexec = 1;
>> results = coder.checkGpuInstall(gpuEnvObj)
Will Kaczmarek
2021년 4월 13일
Will Kaczmarek
2021년 5월 3일
채택된 답변
추가 답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Deep Learning Toolbox에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!