Skip to content

Commit 443d0b3

Browse files
committed
yticks to 11 inmetrics plot
1 parent a019d62 commit 443d0b3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

trainer/tests/plot_metrics.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ def plot_mean_val(x_values_list, y_values_list, color, linestyle, label):
117117
plt.xlabel(x_axis_label)
118118
plt.ylabel(metric)
119119
plt.ylim([0, 1]) # Set y-axis limit for consistent comparison
120-
plt.yticks([0.0, 0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.8, 0.9, 1.0])
120+
plt.yticks([0.0, 0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9, 1.0])
121121
plt.legend()
122122
plt.grid(True)
123123

0 commit comments

Comments
 (0)