有没有简单的方法可以在整个项目中禁用$asyncValidators
和encoded_input = Input(shape=(1, 28, 28))
# retrieve the last layer of the autoencoder model
decoder_layer = autoencoder.layers[-1]
# create the decoder model
decoder = Model(input=encoded_input, output=decoder_layer(encoded_input))
?我有兴趣这样做的原因是确保用户界面在服务的错误响应发生时做出适当的响应。
我认为我应该可以在某个配置块中执行此操作,但无法在其上找到任何文档。
非常感谢任何帮助。