2019年8月7日
摘要: 1 """ python绘制神经网络训练精度与损失 """ 2 3 # 导入相应包 4 from matplotlib import pyplot as plt 5 6 # 构造绘图函数 7 def drow(history): 8 epochs = range(1, len(history['lo 阅读全文
posted @ 2019-08-07 22:40 Sayang 阅读(3410) 评论(1) 推荐(0) 编辑