Update index.html
Browse files- index.html +21 -12
index.html
CHANGED
@@ -1,19 +1,28 @@
|
|
1 |
<!doctype html>
|
2 |
-
<html>
|
3 |
<head>
|
4 |
<meta charset="utf-8" />
|
5 |
-
<meta name="viewport" content="width=device-width" />
|
6 |
-
<title>
|
7 |
-
<
|
8 |
</head>
|
9 |
-
<body>
|
10 |
-
<div class="
|
11 |
-
<
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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>DuckDB NSQL Scores</title>
|
7 |
+
<script src="https://cdn.tailwindcss.com"></script>
|
8 |
</head>
|
9 |
+
<body class="flex min-h-screen items-center justify-center bg-yellow-100">
|
10 |
+
<div class="w-full max-w-4xl overflow-hidden rounded-2xl shadow-2xl">
|
11 |
+
<header class="bg-yellow-200 px-3 py-4 text-center sm:px-4 sm:py-6 sm:text-left">
|
12 |
+
<h1 class="mb-2 text-3xl font-extrabold text-gray-800 sm:mb-3 sm:text-4xl">DuckDB NSQL Scores</h1>
|
13 |
+
<p class="text-lg text-gray-700">
|
14 |
+
Performance of Models on
|
15 |
+
<a href="https://github.com/NumbersStationAI/DuckDB-NSQL" class="text-blue-600 underline hover:text-blue-800"
|
16 |
+
>DuckDB NSQL Eval</a
|
17 |
+
>
|
18 |
+
</p>
|
19 |
+
</header>
|
20 |
+
<iframe
|
21 |
+
src="https://huggingface.co/datasets/sql-console/duckdb-nsql-benchmark-results/embed/sql-console/default/train?sql_console=true&sql=select+name%2C+%22prompt+template%22+as+prompt%2C+%22all+%28n%3D75%29%22+as+score%2C+bar%28score%2C+0%2C+1%2C+60%29+as+chart%0Afrom+train+%0Aorder+by+score+desc&views%5B%5D=train"
|
22 |
+
frameborder="0"
|
23 |
+
width="100%"
|
24 |
+
height="560px"
|
25 |
+
></iframe>
|
26 |
</div>
|
27 |
</body>
|
28 |
</html>
|