# 绘制准确率变化曲线 plt.subplot(1, 2, 1) plt.plot(history.history['accuracy'], label='train acc') plt.plot(history.history['val_accuracy'], label='val acc') plt.legend() plt.title('Accuracy') # 绘制损失率变化曲线 plt.subplot(1, 2, 2) plt.plot(history.history['loss'], label='train loss') plt.plot(history.history['val_loss'], label='val loss') plt.legend() plt.title('Loss') plt.show()让训练集用实线表示,测试集为虚线
时间: 2023-08-07 15:04:18 浏览: 112
你可以在绘制曲线时指定实线或虚线的样式。可以像下面这样编写代码:
```
import matplotlib.pyplot as plt
# 绘制准确率变化曲线
plt.subplot(1, 2, 1)
plt.plot(history.history['accuracy'], label='train acc', linestyle='solid')
plt.plot(history.history['val_accuracy'], label='val acc', linestyle='dashed')
plt.legend()
plt.title('Accuracy')
# 绘制损失率变化曲线
plt.subplot(1, 2, 2)
plt.plot(history.history['loss'], label='train loss', linestyle='solid')
plt.plot(history.history['val_loss'], label='val loss', linestyle='dashed')
plt.legend()
plt.title('Loss')
plt.show()
```
这里在绘制训练集和测试集的曲线时,使用 `linestyle` 参数指定实线或虚线的样式。`linestyle='solid'` 表示实线,`linestyle='dashed'` 表示虚线。
阅读全文