Spaces:
Sleeping
Sleeping
File size: 1,642 Bytes
e1814ef | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 | <!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>CI-Triage Episode Replay</title>
<link rel="stylesheet" href="viewer.css">
</head>
<body>
<header class="header">
<h1>CI-Triage Episode Replay</h1>
<div class="loaders">
<label>Trace <input type="file" id="trace-loader" accept=".json"></label>
<label>Scenario (optional) <input type="file" id="scenario-loader" accept=".json"></label>
<label>Compare (optional) <input type="file" id="trace-loader-2" accept=".json"></label>
<button id="reset-btn" type="button">Clear</button>
</div>
<div class="empty-state" id="empty-state">Load an EpisodeTrace JSON to begin.</div>
</header>
<main class="container">
<aside class="left-panel">
<h2>Failure</h2>
<div id="failure-summary" class="card">β</div>
<h2>Budget</h2>
<div id="budget" class="card">β</div>
<h2>Ground Truth</h2>
<div id="ground-truth" class="card hidden-until-terminal">β</div>
</aside>
<section class="main-panel">
<h2>Trajectory</h2>
<div id="timeline" class="timeline"></div>
<h2>Step Detail</h2>
<div id="step-detail" class="card detail">Click a step on the timeline.</div>
</section>
<aside class="right-panel">
<h2>Reward Breakdown</h2>
<div id="reward-breakdown" class="card">β</div>
<h2>Counterfactual Probe</h2>
<div id="counterfactual" class="card">β</div>
<h2>Comparison</h2>
<div id="comparison" class="card">Load a second trace to compare.</div>
</aside>
</main>
<script src="viewer.js"></script>
</body>
</html>
|