I go this error message when running this. I suspect this might be an out-of-memory error as I have a rather small GPU unit (only 2 GB) but I do wish the error message was more informative. Not the fault of this software or CNTK though seems to be CUDA's fault. Googling yielded no answer either - but I did find more than a few people asking about the message, some thinking it might have been memory issues.
In any case the work around is to add a deviceId=-1 parameter to force a CPU-only invocation of CNTK to line 24 of 3_runCntk.py like this:
I go this error message when running this. I suspect this might be an out-of-memory error as I have a rather small GPU unit (only 2 GB) but I do wish the error message was more informative. Not the fault of this software or CNTK though seems to be CUDA's fault. Googling yielded no answer either - but I did find more than a few people asking about the message, some thinking it might have been memory issues.
In any case the work around is to add a
deviceId=-1
parameter to force a CPU-only invocation of CNTK to line 24 of3_runCntk.py
like this:CNTK then ran in 188 seconds on my i7-4770T CPU (not the fastest either) - and this is fine for getting the demo to work.
It would be worth having this as a flag.