Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试进行 10 次类似于 CNTK_103B_MNIST_FeedForwardNetwork 教程中的代码的测试预测,但出现如下所示的错误。我的代码可能有什么问题?
代码/错误信息
回答我自己的问题。我在模型中使用了错误的 CNTK input_variable 名称。
我更改了这行代码:
predicted_label_prob = pred_basic_model.eval({input : x})
到
predicted_label_prob = pred_basic_model.eval({pred_basic_model.arguments[0] : x})
现在它可以工作了。