n0w0f commited on
Commit
7b5eba5
·
1 Parent(s): f65724a

chore: top 20 auths, cap score

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -377,7 +377,7 @@ def refresh_gallery():
377
  else:
378
  author_counts[author] = 1
379
 
380
- top_authors = sorted(author_counts.items(), key=lambda x: x[1], reverse=True)[:5]
381
  top_authors = [author for author, count in top_authors]
382
 
383
  for card in eval_cards:
 
377
  else:
378
  author_counts[author] = 1
379
 
380
+ top_authors = sorted(author_counts.items(), key=lambda x: x[1], reverse=True)[:20]
381
  top_authors = [author for author, count in top_authors]
382
 
383
  for card in eval_cards: