We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 35cdd40 commit 14513abCopy full SHA for 14513ab
leaderboard.html
@@ -743,6 +743,12 @@ <h1 class="text-3xl font-bold mb-4 text-center text-black">Leaderboard</h1>
743
744
<script>
745
$(document).ready(function() {
746
+ // Initialize DataTables with custom settings for unconstrainedLeaderboardTable
747
+ $('#unconstrainedLeaderboardTable').DataTable({
748
+ "pageLength": -1, // Display all rows on a single page
749
+ "order": [[5, "desc"]] // Sort by ImageNet-1K Top 1 accuracy in descending order
750
+ });
751
+
752
// Initialize DataTables for all tables
753
$('#constrainedLeaderboardTable').DataTable();
754
$('#unconstrainedLeaderboardTable').DataTable();
0 commit comments