cfahlgren1 HF staff commited on
Commit
ad554c7
β€’
1 Parent(s): e39cb3e

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +2 -2
index.html CHANGED
@@ -10,8 +10,8 @@
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 🐐 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=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"
 
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 🐐 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+WHEN+rank+%3D+1+THEN+CONCAT%28author%2C+%27+%F0%9F%90%90%27%29+ELSE+author+END+AS+author%2C%0A++total_likes%2C%0A++total_downloads_each_month%2C%0A++bar%28total_likes%2C+0%2C+20000%29+AS+likes%0AFROM+ranked_authors%0AWHERE+rank+%3C%3D+500%0AORDER+BY+rank+ASC"
15
  frameborder="0"
16
  width="100%"
17
  height="750px"