cfahlgren1 HF staff commited on
Commit
6e6d8af
1 Parent(s): 2429f5b

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +6 -7
index.html CHANGED
@@ -10,13 +10,12 @@
10
  <div class="max-w-4xl 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">GGUF Authors</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=from+histogram%28%0A++train%2C%0A++author%0A%29"
15
- frameborder="0"
16
- width="100%"
17
- height="750px"
18
- class="w-full"
19
- ></iframe>
20
  </div>
21
  </div>
22
  </body>
 
10
  <div class="max-w-4xl 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">GGUF Authors</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=SELECT+%0A++author%2C+%0A++sum%28likes%29+as+total_likes%2C+%0A++sum%28downloads%29+as+total_downloads_each_month%2C%0A++bar%28total_likes%2C+0%2C+20000%29+as+likes%2C%0Afrom+train%0Agroup+by+author%0Aorder+by+total_likes+desc%0Alimit+500"
15
+ frameborder="0"
16
+ width="100%"
17
+ height="750px"
18
+ ></iframe>
 
19
  </div>
20
  </div>
21
  </body>