Spaces:
Running
Running
tmp
Browse files- dist/index_frame.html +28 -1
dist/index_frame.html
CHANGED
@@ -1 +1,28 @@
|
|
1 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE html>
|
2 |
+
<html>
|
3 |
+
<head>
|
4 |
+
<script src="distill.bundle.js" type="module" fetchpriority="high" blocking></script>
|
5 |
+
<script src="main.bundle.js" type="module" fetchpriority="low" defer></script>
|
6 |
+
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
7 |
+
<meta charset="utf8">
|
8 |
+
<base target="_blank">
|
9 |
+
<title>Scaling FineWeb to 1000+ languages: Step 1: finding signal in 100s of evaluation tasks</title>
|
10 |
+
<link rel="stylesheet" href="style.css">
|
11 |
+
<style>
|
12 |
+
body, html {
|
13 |
+
margin: 0;
|
14 |
+
padding: 0;
|
15 |
+
height: 100%;
|
16 |
+
overflow: hidden;
|
17 |
+
}
|
18 |
+
iframe {
|
19 |
+
border: none;
|
20 |
+
width: 100%;
|
21 |
+
height: 100%;
|
22 |
+
}
|
23 |
+
</style>
|
24 |
+
</head>
|
25 |
+
<body>
|
26 |
+
<iframe src="dist/index.html"></iframe>
|
27 |
+
</body>
|
28 |
+
</html>
|