style(paper/object): 调整图表尺寸以提高可读性

将图表尺寸从 (12, 9) 调整为 (12, 12),以便更好地展示训练数据的细节
This commit is contained in:
carry 2025-04-29 19:00:38 +08:00
parent 728c38dd2d
commit b4da95e81e
2 changed files with 1 additions and 1 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 128 KiB

After

Width:  |  Height:  |  Size: 151 KiB

View File

@ -15,7 +15,7 @@ plt.rcParams.update({
data = pd.read_csv('training_data.csv')
# 创建图表
plt.figure(figsize=(12, 9))
plt.figure(figsize=(12, 12))
# 绘制梯度范数变化曲线
plt.subplot(3, 1, 1) # 修改为 3行1列的第1个