Spaces:
Running
Running
Commit
·
727a804
1
Parent(s):
8cbbe76
explanations
Browse files
app.py
CHANGED
@@ -135,7 +135,7 @@ with gr.Blocks(css="""
|
|
135 |
box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
|
136 |
}
|
137 |
.styled-table thead tr {
|
138 |
-
background-color: #
|
139 |
color: #ffffff;
|
140 |
text-align: left;
|
141 |
}
|
@@ -148,7 +148,11 @@ with gr.Blocks(css="""
|
|
148 |
}
|
149 |
""") as demo:
|
150 |
gr.Markdown("# 🎯 Phonemic Transcription Model Evaluation Leaderboard")
|
151 |
-
|
|
|
|
|
|
|
|
|
152 |
with gr.Tabs():
|
153 |
with gr.TabItem("🏆 Leaderboard"):
|
154 |
leaderboard_html = gr.HTML(create_html_table(format_leaderboard_df(load_leaderboard_data())))
|
|
|
135 |
box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
|
136 |
}
|
137 |
.styled-table thead tr {
|
138 |
+
background-color: #96b9D0;
|
139 |
color: #ffffff;
|
140 |
text-align: left;
|
141 |
}
|
|
|
148 |
}
|
149 |
""") as demo:
|
150 |
gr.Markdown("# 🎯 Phonemic Transcription Model Evaluation Leaderboard")
|
151 |
+
gr.Markdown("""
|
152 |
+
## Explanation of Metrics
|
153 |
+
- **PER (Phoneme Error Rate)**: The Levenshtein distance calculated between phoneme sequences of the predicted and actual transcriptions.
|
154 |
+
- **PWED (Phoneme Weighted Edit Distance)**: A measure of the edit distance between the predicted and actual phoneme sequences, weighted by the phonemic feature distance. Feature vectors provided by panphon library
|
155 |
+
""")
|
156 |
with gr.Tabs():
|
157 |
with gr.TabItem("🏆 Leaderboard"):
|
158 |
leaderboard_html = gr.HTML(create_html_table(format_leaderboard_df(load_leaderboard_data())))
|