Spaces:
Running
Running
mj-new
commited on
Commit
•
ceb2b55
1
Parent(s):
bba6ca7
Moved system-color mapping to contants
Browse files- constants.py +16 -1
constants.py
CHANGED
@@ -20,4 +20,19 @@ ANALYSIS_INFO = "Here we examine ASR accuracy depending on the system type, mode
|
|
20 |
|
21 |
INSPECTION_INFO = "Here you can inspect the performance of specific ASR systems on the specific audio samples"
|
22 |
|
23 |
-
COMPARISON_INFO = "Here you can compare the performance of different ASR systems on the specific datasets using metrics and visualizations of your choice."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
20 |
|
21 |
INSPECTION_INFO = "Here you can inspect the performance of specific ASR systems on the specific audio samples"
|
22 |
|
23 |
+
COMPARISON_INFO = "Here you can compare the performance of different ASR systems on the specific datasets using metrics and visualizations of your choice."
|
24 |
+
|
25 |
+
|
26 |
+
asr_systems_colors_mapping = {
|
27 |
+
'azure': '#1f77b4', # Blue
|
28 |
+
'google': '#2ca02c', # Green
|
29 |
+
'wav2vec2': '#d62728', # Red
|
30 |
+
'nemo': '#9467bd', # Purple
|
31 |
+
'assemblyai': '#8c564b', # Brown
|
32 |
+
'mms': '#e377c2', # Pink
|
33 |
+
'google_v2': '#7f7f7f', # Gray
|
34 |
+
'whisper_cloud': '#bcbd22', # Olive
|
35 |
+
'whisper_local': '#ff7f0e', # Orange
|
36 |
+
|
37 |
+
# Add or override other systems and their colors
|
38 |
+
}
|