cfahlgren1 HF staff commited on
Commit
f1af0c4
β€’
1 Parent(s): 22ea03c

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +48 -20
index.html CHANGED
@@ -1,22 +1,50 @@
1
  <!doctype html>
2
  <html lang="en">
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6
- <title>Top GGUF Authors on Hugging Face</title>
7
- <script src="https://cdn.tailwindcss.com"></script>
8
- </head>
9
- <body class="bg-gray-100 flex justify-center items-center min-h-screen p-4">
10
- <div class="max-w-5xl w-full bg-white rounded-lg shadow-md overflow-hidden">
11
- <h1 class="text-2xl font-bold text-center py-4 bg-gray-800 text-white">The 🐐 List</h1>
12
- <div class="p-4">
13
- <iframe
14
- 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"
15
- frameborder="0"
16
- width="100%"
17
- height="650px"
18
- ></iframe>
19
- </div>
20
- </div>
21
- </body>
22
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  <!doctype html>
2
  <html lang="en">
3
+ <head>
4
+ <meta charset="utf-8" />
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6
+ <title>Top GGUF Authors on Hugging Face</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <script>
9
+ tailwind.config = {
10
+ theme: {
11
+ extend: {
12
+ fontFamily: {
13
+ alphalyrae: ["AlphaLyrae", "sans-serif"],
14
+ },
15
+ },
16
+ },
17
+ };
18
+ </script>
19
+ <style>
20
+ @font-face {
21
+ font-family: "AlphaLyrae";
22
+ src: url("./AlphaLyrae-Medium.woff") format("woff");
23
+ font-weight: normal;
24
+ font-style: normal;
25
+ font-display: swap;
26
+ }
27
+ </style>
28
+ </head>
29
+ <body class="flex min-h-screen items-center justify-center bg-orange-200">
30
+ <div class="w-full max-w-6xl overflow-hidden rounded-2xl shadow-2xl">
31
+ <header
32
+ class="px-3 py-4 bg-orange-100 text-center sm:px-4 sm:py-6 sm:text-left"
33
+ >
34
+ <h1 class="font-alphalyrae text-3xl sm:text-4xl md:text-5xl font-extrabold text-gray-800 mb-2 sm:mb-3">
35
+ GGUF Goats
36
+ </h1>
37
+ <p class="font-alphalyrae text-lg text-gray-600 sm:text-xl md:text-2xl">
38
+ Top authors with most downloads each month
39
+ </p>
40
+ </header>
41
+ <iframe
42
+ src="https://huggingface.co/datasets/reach-vb/gguf-stats/embed/sql-console/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%28downloads%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_downloads_each_month%2C+0%2C+5004958%2C+50%29+AS+downloads%2C%0A++total_likes%2C%0A++total_downloads_each_month%0AFROM+ranked_authors%0AWHERE+rank+%3C%3D+500%0AORDER+BY+rank+ASC&views%5B%5D=train"
43
+ frameborder="0"
44
+ width="100%"
45
+ height="560px"
46
+ ></iframe>
47
+ </div>
48
+ </div>
49
+ </body>
50
+ </html>