dvilasuero HF staff commited on
Commit
2f28cd4
1 Parent(s): b7a2ed4

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -184,7 +184,7 @@ def main() -> None:
184
  gr.Markdown(
185
  """
186
  ## 👾 Contributors Hall of Fame
187
- The number of all annotators and the top 5 users with the most responses are:
188
  """
189
  )
190
 
@@ -199,12 +199,12 @@ def main() -> None:
199
 
200
  gr.Dataframe(
201
  value=top5_dataframe,
202
- headers=["Name", "Annotated Records"],
203
  datatype=[
204
  "str",
205
  "number",
206
  ],
207
- row_count=5,
208
  col_count=(2, "fixed"),
209
  interactive=False,
210
  ),
 
184
  gr.Markdown(
185
  """
186
  ## 👾 Contributors Hall of Fame
187
+ The number of all contributors and the top 10 contributors:
188
  """
189
  )
190
 
 
199
 
200
  gr.Dataframe(
201
  value=top5_dataframe,
202
+ headers=["Name", "Submitted Responses"],
203
  datatype=[
204
  "str",
205
  "number",
206
  ],
207
+ row_count=10,
208
  col_count=(2, "fixed"),
209
  interactive=False,
210
  ),