slice RMS instead of Score

This commit is contained in:
Mayeul Aubin 2025-04-22 13:54:04 +02:00
parent c31cbb8242
commit 4b7386ae7d

View file

@ -80,7 +80,7 @@ def plot_imshow_with_reference( data_list,
# Add the score on the plots # Add the score on the plots
for i, data in enumerate(data_list): for i, data in enumerate(data_list):
axes[1, i].text(0.5, 0.9, f"Score: {score(data, reference):.2e}", fontsize=10, transform=axes[1, i].transAxes, color='white') axes[1, i].text(0.5, 0.9, f"RMS: {score(data, reference):.2e}", fontsize=10, transform=axes[1, i].transAxes, color='white')
# plt.tight_layout() # plt.tight_layout()
else: else: