cdminix commited on
Commit
26e4879
1 Parent(s): 46f1e1f

add details

Browse files
Files changed (2) hide show
  1. app.py +1 -2
  2. src/texts.py +2 -0
app.py CHANGED
@@ -188,13 +188,12 @@ def init_leaderboard(dataframe):
188
  return Leaderboard(
189
  value=dataframe,
190
  select_columns=SelectColumns(
191
- default_selection=list(dataframe.columns),
192
  cant_deselect=["Model", "Mean"],
193
  label="Select Columns to Display:",
194
  ),
195
  search_columns=["Model", "Tags"],
196
  filter_columns=[],
197
- hide_columns=["Tags"],
198
  interactive=False,
199
  datatype=df_types,
200
  )
 
188
  return Leaderboard(
189
  value=dataframe,
190
  select_columns=SelectColumns(
191
+ default_selection=list(dataframe.columns) - ["Tags"],
192
  cant_deselect=["Model", "Mean"],
193
  label="Select Columns to Display:",
194
  ),
195
  search_columns=["Model", "Tags"],
196
  filter_columns=[],
 
197
  interactive=False,
198
  datatype=df_types,
199
  )
src/texts.py CHANGED
@@ -1,5 +1,7 @@
1
  LLM_BENCHMARKS_TEXT = f"""
2
  ## How it works
 
 
3
 
4
  ## Reproducibility
5
  To reproduce our results, check out our repository [here](https://github.com/ttsds/ttsds).
 
1
  LLM_BENCHMARKS_TEXT = f"""
2
  ## How it works
3
+ Check out our website [here](https://ttsdsbenchmark.com).
4
+ More details can be found in our paper [*TTSDS -- Text-to-Speech Distribution Score*](https://arxiv.org/abs/2407.12707).
5
 
6
  ## Reproducibility
7
  To reproduce our results, check out our repository [here](https://github.com/ttsds/ttsds).