cfahlgren1 HF staff commited on
Commit
28d03ac
·
verified ·
1 Parent(s): a813eff

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +23 -12
index.html CHANGED
@@ -1,19 +1,30 @@
1
  <!doctype html>
2
- <html>
3
  <head>
4
  <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
  </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
 
 
 
 
 
 
 
 
 
 
 
17
  </div>
18
  </body>
19
  </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 Model Orgs on Hugging Face</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
  </head>
9
+ <body class="flex min-h-screen items-center justify-center bg-orange-200">
10
+ <div class="w-full max-w-4xl overflow-hidden rounded-2xl shadow-2xl">
11
+ <header
12
+ class="px-3 py-4 bg-orange-100 text-center sm:px-4 sm:py-6 sm:text-left"
13
+ >
14
+ <h1 class="text-3xl sm:text-4xl font-extrabold text-gray-800 mb-2 sm:mb-3">
15
+ Top Model Organizations
16
+ </h1>
17
+ <p class="text-lg text-gray-600">
18
+ The organizations with the <strong class="text-orange-800">most model downloads</strong> each month
19
+ </p>
20
+ </header>
21
+ <iframe
22
+ src="https://huggingface.co/datasets/cfahlgren1/hub-stats/embed/sql-console/datasets/train?sql_console=true&sql=SELECT+%0A+++++author%2C%0A++++CASE+%0A++++++++WHEN+sum%28downloads%29+%3E%3D+1000000000+THEN+%0A++++++++++++CONCAT%28ROUND%28sum%28downloads%29%3A%3AFLOAT+%2F+1000000000%2C+1%29%2C+%27B%27%29%0A++++++++WHEN+sum%28downloads%29+%3E%3D+1000000+THEN+%0A++++++++++++CONCAT%28ROUND%28sum%28downloads%29%3A%3AFLOAT+%2F+1000000%2C+1%29%2C+%27M%27%29%0A++++++++WHEN+sum%28downloads%29+%3E%3D+1000+THEN+%0A++++++++++++CONCAT%28ROUND%28sum%28downloads%29%3A%3AFLOAT+%2F+1000%2C+1%29%2C+%27K%27%29%0A++++++++ELSE+%0A++++++++++++sum%28downloads%29%3A%3AVARCHAR%0A++++END+AS+total_monthly_downloads%2C%0A++bar%28sum%28downloads%29%2C+0%2C+500_000_000%2C+60%29+as+downloads%0AFROM+models%0AGROUP+BY+ALL+%0AORDER+BY+sum%28downloads%29+DESC+%0ALIMIT+100&views%5B%5D=datasets&views%5B%5D=models"
23
+ frameborder="0"
24
+ width="100%"
25
+ height="560px"
26
+ ></iframe>
27
+ </div>
28
  </div>
29
  </body>
30
  </html>