如何根據keras的fit後返回的history繪製loss acc曲線

model.summary() #繪製acc-loss曲線 import matplotlib.pyplot as plt plt.plot(hist.history['loss'],color='r') plt.plot(hist.history['val_loss'],color='g') plt.plot(hist.history['acc'],color='b') plt.plot(his
相關文章
相關標籤/搜索