Spaces:
Running
Running
Add Space card
Browse files
README.md
CHANGED
|
@@ -1,10 +1,38 @@
|
|
| 1 |
---
|
| 2 |
title: TCS Trace Viewer
|
| 3 |
-
emoji:
|
| 4 |
-
colorFrom:
|
| 5 |
-
colorTo:
|
| 6 |
sdk: static
|
|
|
|
| 7 |
pinned: false
|
|
|
|
|
|
|
| 8 |
---
|
| 9 |
|
| 10 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
title: TCS Trace Viewer
|
| 3 |
+
emoji: 🔭
|
| 4 |
+
colorFrom: indigo
|
| 5 |
+
colorTo: green
|
| 6 |
sdk: static
|
| 7 |
+
app_file: index.html
|
| 8 |
pinned: false
|
| 9 |
+
license: mit
|
| 10 |
+
short_description: Browse meta-reasoning trajectories (midtrain + eval)
|
| 11 |
---
|
| 12 |
|
| 13 |
+
# TCS Trace Viewer
|
| 14 |
+
|
| 15 |
+
A static viewer for meta-reasoning trajectories. It renders, with one UI, both
|
| 16 |
+
**Midtrain V3** scout trajectories assembled from an SFT JSONL (e.g.
|
| 17 |
+
[`HerrHruby/MR_midtrain_v3_sft_core`](https://huggingface.co/datasets/HerrHruby/MR_midtrain_v3_sft_core))
|
| 18 |
+
and **eval rollouts** (IMO / SODA) from `inference.mrv3.run_dual`, the latter
|
| 19 |
+
carrying judge scores, a bench label, and the termination reason.
|
| 20 |
+
|
| 21 |
+
For each trajectory it shows the **problem** and, per layer:
|
| 22 |
+
|
| 23 |
+
- the **assembled frontier** the planner consumed (the exact `Exploration so far:`
|
| 24 |
+
context the MR target was generated from),
|
| 25 |
+
- the **directions chosen** at that layer,
|
| 26 |
+
- the **planner CoT**, the **execution traces** (CoT + finding), the per-execution
|
| 27 |
+
**summaries** (summary / rationale / core result),
|
| 28 |
+
- and the synthesized **final answers** with judge scores and coverage.
|
| 29 |
+
|
| 30 |
+
Use the sidebar to filter and switch between trajectories; the toggles in the top
|
| 31 |
+
bar control which views are shown.
|
| 32 |
+
|
| 33 |
+
This Space bundles the pre-built trajectory index (`data/`) so it is fully
|
| 34 |
+
self-contained — no external data fetch at runtime. Math renders with KaTeX and
|
| 35 |
+
prose with marked, both vendored locally under `vendor/`.
|
| 36 |
+
|
| 37 |
+
To regenerate or extend the index, see `build_index.py` (midtrain SFT) and
|
| 38 |
+
`build_eval_index.py` (eval rollouts) in the source repo.
|