模型输入的形状为(None,4,64,80),输出层的形状为(None,7,64,80)。X_train形状为(15993,4,64,80),Y_train形状为(15993,64,80)。Y_train, validation_split=0.33, epochs=10, batch_size=100, callbacks=callbacks_list, verbose=0)
但是它给出了下面的错误TypeError: Bad input argument to theano function with
我在theano中有一个函数f,它接受两个参数,其中一个是可选的。当我使用可选参数None调用函数时,f内部的检查将失败。此脚本复制错误:import theano.tensor as Tdef f(b, c=NoneBacktrace when the node is created:
File "