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.
CNTK_103B_MNIST_FeedForwardNetwork チュートリアルのコードと同様の 10 個のテスト予測を実行しようとしていますが、以下に示すようなエラーが発生します。私のコードの問題は何ですか?
コード/エラーメッセージ
私自身の質問に答えるために。モデルで 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})
そして今それは動作します。