Update index.html
Browse files- index.html +5 -4
index.html
CHANGED
@@ -18,10 +18,11 @@
|
|
18 |
</p>
|
19 |
</header>
|
20 |
<iframe
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
|
|
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>
|