Spaces:
Running
Running
Upload folder using huggingface_hub
Browse files- assets/favicon.svg +10 -0
- assets/index.css +0 -0
- assets/index.js +0 -0
- index.html +27 -17
- logs/2026-02-09T14-11-03+00-00_multichoice-example_6b6GqBvjRfgjkvZ6bHoLPd.eval +0 -0
- logs/listing.json +20 -0
- robots.txt +2 -0
assets/favicon.svg
ADDED
|
|
assets/index.css
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
assets/index.js
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
index.html
CHANGED
|
@@ -1,19 +1,29 @@
|
|
| 1 |
<!doctype html>
|
| 2 |
-
<html>
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 19 |
</html>
|
|
|
|
| 1 |
<!doctype html>
|
| 2 |
+
<html lang="en" data-bs-theme="light">
|
| 3 |
+
<head>
|
| 4 |
+
<meta charset="utf-8" />
|
| 5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
| 6 |
+
<meta name="robots" content="noindex,noai,noimageai" />
|
| 7 |
+
<title>Inspect View</title>
|
| 8 |
+
<link rel="icon" href="./assets/favicon.svg" />
|
| 9 |
+
|
| 10 |
+
<script>
|
| 11 |
+
// Forward the theme (dark or light) onto the root html element
|
| 12 |
+
// this parameter will tend to appear when the view is hosted within
|
| 13 |
+
// an iframe (e.g. in vscode)
|
| 14 |
+
const urlParams = new URLSearchParams(window.location.search);
|
| 15 |
+
const theme = urlParams.get("inspectLogviewThemeCategory");
|
| 16 |
+
if (theme) {
|
| 17 |
+
document.documentElement.setAttribute("data-text-highlight", theme);
|
| 18 |
+
document.documentElement.setAttribute("data-bs-theme", theme);
|
| 19 |
+
}
|
| 20 |
+
</script>
|
| 21 |
+
<script type="module" crossorigin src="./assets/index.js"></script>
|
| 22 |
+
<link rel="stylesheet" crossorigin href="./assets/index.css">
|
| 23 |
+
<script id="log_dir_context" type="application/json">{"log_dir": "logs"}</script>
|
| 24 |
+
</head>
|
| 25 |
+
|
| 26 |
+
<body style="min-width: 450px">
|
| 27 |
+
<div id="app"></div>
|
| 28 |
+
</body>
|
| 29 |
</html>
|
logs/2026-02-09T14-11-03+00-00_multichoice-example_6b6GqBvjRfgjkvZ6bHoLPd.eval
ADDED
|
Binary file (11 kB). View file
|
|
|
logs/listing.json
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"2026-02-09T14-11-03+00-00_multichoice-example_6b6GqBvjRfgjkvZ6bHoLPd.eval": {
|
| 3 |
+
"eval_id": "Xjuv79dnxJLyxkEdtcMRoV",
|
| 4 |
+
"run_id": "g7oZAcxBVQyKPtvrrf3peX",
|
| 5 |
+
"task": "multichoice_example",
|
| 6 |
+
"task_id": "6b6GqBvjRfgjkvZ6bHoLPd",
|
| 7 |
+
"task_version": 0,
|
| 8 |
+
"version": 2,
|
| 9 |
+
"status": "success",
|
| 10 |
+
"invalidated": false,
|
| 11 |
+
"model": "openai/gpt-4o-mini",
|
| 12 |
+
"started_at": "2026-02-09T14:11:03+00:00",
|
| 13 |
+
"completed_at": "2026-02-09T14:11:04+00:00",
|
| 14 |
+
"primary_metric": {
|
| 15 |
+
"name": "accuracy",
|
| 16 |
+
"value": 0.0,
|
| 17 |
+
"params": {}
|
| 18 |
+
}
|
| 19 |
+
}
|
| 20 |
+
}
|
robots.txt
ADDED
|
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
|
|
|
| 1 |
+
User-agent: *
|
| 2 |
+
Disallow: /
|