I'm trying to do 10 test predictions similar to the code in the CNTK_103B_MNIST_FeedForwardNetwork tutorial, but I'm getting an error as shown below. What could be the problem with my code?
Code / Error Message
I'm trying to do 10 test predictions similar to the code in the CNTK_103B_MNIST_FeedForwardNetwork tutorial, but I'm getting an error as shown below. What could be the problem with my code?
Code / Error Message
To answer my own question. I used the incorrect name of the CNTK input_variable in the model.
I changed this line of code:
to
and now it works.