Spaces:
Running
Running
File size: 1,483 Bytes
9a01ed2 97e4718 e39cb3e 97e4718 22ea03c d3ce4ac 97e4718 a940991 f287776 6e6d8af 847a494 6e6d8af 97e4718 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Top GGUF Authors on Hugging Face</title>
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body class="bg-gray-100 flex justify-center items-center min-h-screen p-4">
<div class="max-w-5xl w-full bg-white rounded-lg shadow-md overflow-hidden">
<h1 class="text-2xl font-bold text-center py-4 bg-gray-800 text-white">The 🐐 List</h1>
<div class="p-4">
<iframe
src="https://huggingface.co/datasets/reach-vb/gguf-stats/embed/viewer/default/train?sql_console=true&sql=WITH+ranked_authors+AS+%28%0A++SELECT+%0A++++author%2C%0A++++SUM%28likes%29+AS+total_likes%2C%0A++++SUM%28downloads%29+AS+total_downloads_each_month%2C%0A++++ROW_NUMBER%28%29+OVER+%28ORDER+BY+SUM%28likes%29+DESC%29+AS+rank%0A++FROM+train%0A++GROUP+BY+author%0A%29%0ASELECT+%0A++rank%2C%0A++CASE+%0A++++WHEN+rank+%3D+1+THEN+CONCAT%28author%2C+%27+%F0%9F%90%90%27%29%0A++++WHEN+rank+%3D+2+THEN+CONCAT%28author%2C+%27+%F0%9F%A5%88%27%29%0A++++WHEN+rank+%3D+3+THEN+CONCAT%28author%2C+%27+%F0%9F%A5%89%27%29%0A++++ELSE+author+%0A++END+AS+author%2C%0A++bar%28total_likes%2C+0%2C+20000%2C+50%29+AS+likes%2C%0A++total_likes%2C%0A++total_downloads_each_month%0AFROM+ranked_authors%0AWHERE+rank+%3C%3D+500%0AORDER+BY+rank+ASC"
frameborder="0"
width="100%"
height="650px"
></iframe>
</div>
</div>
</body>
</html> |