Skip to content

Commit

Permalink
updated unconstrained leaderboard to show all results on same page an…
Browse files Browse the repository at this point in the history
…d sort by imagenet top 1 acc in descending order
  • Loading branch information
oriyonay committed Oct 28, 2024
1 parent 35cdd40 commit 14513ab
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions leaderboard.html
Original file line number Diff line number Diff line change
Expand Up @@ -743,6 +743,12 @@ <h1 class="text-3xl font-bold mb-4 text-center text-black">Leaderboard</h1>

<script>
$(document).ready(function() {
// Initialize DataTables with custom settings for unconstrainedLeaderboardTable
$('#unconstrainedLeaderboardTable').DataTable({
"pageLength": -1, // Display all rows on a single page
"order": [[5, "desc"]] // Sort by ImageNet-1K Top 1 accuracy in descending order
});

// Initialize DataTables for all tables
$('#constrainedLeaderboardTable').DataTable();
$('#unconstrainedLeaderboardTable').DataTable();
Expand Down

0 comments on commit 14513ab

Please sign in to comment.