tdoehmen commited on
Commit
18f9086
1 Parent(s): 181785d

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +5 -4
index.html CHANGED
@@ -18,10 +18,11 @@
18
  </p>
19
  </header>
20
  <iframe
21
- src="https://huggingface.co/datasets/sql-console/duckdb-nsql-scores/embed/sql-console/default/test?sql_console=true&sql=select+model_name+as+model%2C+prompt_format+as+prompt%2C+round%28all_execution_accuracy%2C+2%29+execution_accuracy%2C+bar%28all_execution_accuracy%2C+0%2C+1%2C+60%29+as+score%0Afrom+test%0Aorder+by+all_execution_accuracy%0Adesc&views%5B%5D=test"
22
- width="100%"
23
- height="560px"
24
- ></iframe>
 
25
  </div>
26
  </body>
27
  </html>
 
18
  </p>
19
  </header>
20
  <iframe
21
+ src="https://huggingface.co/datasets/sql-console/duckdb-nsql-scores/embed/sql-console/default/test?sql_console=true&sql=WITH+RankedModels+AS+%28%0A++++SELECT+%0A++++++++model_name+AS+model%2C+%0A++++++++prompt_format+AS+prompt%2C+%0A++++++++ROUND%28all_execution_accuracy%2C+2%29+AS+execution_accuracy%2C+%0A++++++++BAR%28all_execution_accuracy%2C+0%2C+1%2C+60%29+AS+score%2C%0A++++++++ROW_NUMBER%28%29+OVER+%28PARTITION+BY+model_name%2C+prompt_format+ORDER+BY+all_execution_accuracy+DESC%29+AS+rn%0A++++FROM+%0A++++++++test%0A%29%0ASELECT+model%2C+prompt%2C+execution_accuracy%2C+score%0AFROM+RankedModels%0AWHERE+rn+%3D+1%0AORDER+BY+execution_accuracy+DESC%3B&views%5B%5D=test"
22
+ frameborder="0"
23
+ width="100%"
24
+ height="560px">
25
+ </iframe>
26
  </div>
27
  </body>
28
  </html>