minor fix for plotting with newer matplotlib versions

This commit is contained in:
N_T 2024-02-13 17:18:23 +01:00
parent a8e027c5db
commit 3165a15270

View File

@ -564,7 +564,7 @@
],
"source": [
"plt = vis.plot(x_gd.values.batch[0], x_sip.values.batch[0], data.values.batch[0], size=(15,4) )\n",
"plt.get_axes()[0].set_title(\"Adam\"); plt.get_axes()[1].set_title(\"SIP\"); plt.get_axes()[2].set_title(\"Reference\");\n"
"plt.axes[0].title=\"Adam\"; plt.axes[1].title=\"SIP\"; plt.axes[2].title=\"Reference\";\n"
]
},
{
@ -605,4 +605,4 @@
},
"nbformat": 4,
"nbformat_minor": 0
}
}