标签: python tensorflow keras tensorflow2.0
在TF2.0中,仍然需要在创建keras模型后调用model.compile,如doc所示。
model.compile
但是在渴望模式下,不需要创建图,那么Tensorflow 2.0中tf.keras.Model.compile的用途是什么?
tf.keras.Model.compile
答案 0 :(得分:1)
model.compile与图形模式无关,它定义了损耗,优化器和指标,与TF 1.x中的keras和tf.keras相同。该图只是一个内部细节,与model.compile并没有真正的联系。
keras
tf.keras