欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

深度学习2.0-21.Keras高层API-compile&fit&Evaluate&Predict

程序员文章站 2022-07-13 13:14:55
...


深度学习2.0-21.Keras高层API-compile&fit&Evaluate&Predict

1.标准的训练

1.loss and optimizer and metrics

before
深度学习2.0-21.Keras高层API-compile&fit&Evaluate&Predict
now
深度学习2.0-21.Keras高层API-compile&fit&Evaluate&Predict

2.epoch and step

before
深度学习2.0-21.Keras高层API-compile&fit&Evaluate&Predict
now
深度学习2.0-21.Keras高层API-compile&fit&Evaluate&Predict
深度学习2.0-21.Keras高层API-compile&fit&Evaluate&Predict

3.evaluation

before
深度学习2.0-21.Keras高层API-compile&fit&Evaluate&Predict
now

network.compile(optimizer = optimizers.Adam(lr=0.01),
		loss = tf.losses.CategoricalCrossentropy(from_logits = True),
		metrics = ['accuracy']
		)
network.fit(db,epochs=10, validation_data = ds_val,
				validstion_freq=2)

深度学习2.0-21.Keras高层API-compile&fit&Evaluate&Predict

4.test

深度学习2.0-21.Keras高层API-compile&fit&Evaluate&Predict
evaluate相当于中间的test或者validation
深度学习2.0-21.Keras高层API-compile&fit&Evaluate&Predict

5.predict

深度学习2.0-21.Keras高层API-compile&fit&Evaluate&Predict