私は、正確にthis tutorialをMNISTデータセットを使ってニューラルネットワークに複製しようとしています。私はコピー&ペーストすると、それを私のPythonのエディタに、私は次の例外を取得:PythonのKerasを使ったニューラルネットワークのinput_shape問題
Exception: The first layer in a Sequential model must get an `input_shape` or `batch_input_shape` argument.
をだから私は
model.add(Convolution2D(32, 1, 3, 3, border_mode='same', input_sheme=(1,28,28)))
を使用して入力shemeを指定しようとしましたが、私はこれは間違っていたと思います。
誰でも手伝いできますか?