thewh1teagle commited on
Update axis labels in WER plot for clarity and improved readability
Browse files- 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 (
|
| 118 |
-
ax.set_ylabel("WER (
|
|
|
|
| 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 |
|