chore: top 20 auths, cap score
Browse files
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)[:
|
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:
|