Commit
·
1fbfac0
1
Parent(s):
d6e4dd3
Fix table columns
Browse files
app.py
CHANGED
|
@@ -138,7 +138,7 @@ with app:
|
|
| 138 |
label = "Emotion",
|
| 139 |
)
|
| 140 |
with gr.Row():
|
| 141 |
-
hidden_columns = ['model', 'dataset', 'emotion', 'wavlm']
|
| 142 |
feature = gr.Radio(
|
| 143 |
choices = [kol for kol in list(leaderboard.get_models_performance_dataframe_column()) if kol not in hidden_columns],
|
| 144 |
value = "pitch",
|
|
|
|
| 138 |
label = "Emotion",
|
| 139 |
)
|
| 140 |
with gr.Row():
|
| 141 |
+
hidden_columns = ['model', 'dataset', 'emotion', 'wavlm', "Unnamed: 0"]
|
| 142 |
feature = gr.Radio(
|
| 143 |
choices = [kol for kol in list(leaderboard.get_models_performance_dataframe_column()) if kol not in hidden_columns],
|
| 144 |
value = "pitch",
|