thewh1teagle commited on
Commit
180f090
·
unverified ·
1 Parent(s): 475a735

Update axis labels in WER plot for clarity and improved readability

Browse files
Files changed (1) hide show
  1. comparison/wer_plot.py +3 -2
comparison/wer_plot.py CHANGED
@@ -114,8 +114,9 @@ ax.xaxis.get_major_formatter().set_useOffset(False)
114
  ax.xaxis.set_minor_locator(ticker.LogLocator(base=10.0, subs=np.arange(2, 10) * 0.1))
115
 
116
  # Set axis labels with larger font
117
- ax.set_xlabel("RTF (lower is faster)", fontsize=18, fontweight='bold')
118
- ax.set_ylabel("WER (lower is more accurate)", fontsize=18, fontweight='bold')
 
119
 
120
  # Remove title
121
 
 
114
  ax.xaxis.set_minor_locator(ticker.LogLocator(base=10.0, subs=np.arange(2, 10) * 0.1))
115
 
116
  # Set axis labels with larger font
117
+ ax.set_xlabel("RTF (Faster)", fontsize=18, fontweight='bold')
118
+ ax.set_ylabel("WER (More accurate)", fontsize=18, fontweight='bold')
119
+
120
 
121
  # Remove title
122