摘要: ```python import tensorflow as tf class myCallback(tf.keras.callbacks.Callback): def on_epoch_end(self,epoch,logs={}): if logs.get('acc')>0.99: print('\nReaching 99% accuracy s... 阅读全文
posted @ 2019-08-20 12:53 FromZeroToOne 阅读(393) 评论(0) 推荐(0) 编辑