202010-08 Keras官方中文文档:性能评估Metrices详解 能评估使用方法性能评估模块提供了一系列用于模型性能评估的函数,这些函数在模型编译时由metrics关键字设置性能评估函数类似与目标函数,只不过该性能的评估结果讲不会用于训练.可以通过字符串来使用域定义的性能评估函数model.compile(loss='mean_squared_error',optimizer='sgd',metrics=['mae','acc'])也可以自定义一个Theano/TensorFlow函数并使用之fromkerasimportmetricsmodel.compile(loss='mean_squared_erro... 继续阅读 >