Spaces:
Running
Running
Commit
•
97e4718
1
Parent(s):
8256827
Update index.html
Browse files- index.html +22 -18
index.html
CHANGED
@@ -1,19 +1,23 @@
|
|
1 |
<!doctype html>
|
2 |
-
<html>
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
|
|
|
|
|
|
|
|
|
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>GGUF Authors</title>
|
7 |
+
<script src="https://cdn.tailwindcss.com"></script>
|
8 |
+
</head>
|
9 |
+
<body class="bg-gray-100 flex justify-center items-center min-h-screen p-4">
|
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-blue-600 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>
|
23 |
+
</html>
|