Spaces:
Sleeping
Sleeping
Dropdown: only the unified PTS datasets
Browse files
app.py
CHANGED
|
@@ -2582,17 +2582,18 @@ def refresh_all():
|
|
| 2582 |
# causal-event files too -- upload one and add it here, or load it from disk with
|
| 2583 |
# the file upload. Listing PTS datasets that have not been published yet would put
|
| 2584 |
# entries in the dropdown that can only fail.
|
| 2585 |
-
#
|
| 2586 |
-
#
|
| 2587 |
-
#
|
| 2588 |
-
#
|
| 2589 |
-
#
|
| 2590 |
-
#
|
|
|
|
|
|
|
|
|
|
| 2591 |
HF_DATASETS = [
|
| 2592 |
"codelion/Qwen3-0.6B-pts",
|
| 2593 |
-
"codelion/Qwen3-0.6B-pts-steering-vectors",
|
| 2594 |
"codelion/DeepSeek-R1-Distill-Qwen-1.5B-pts",
|
| 2595 |
-
"codelion/DeepSeek-R1-Distill-Qwen-1.5B-pts-steering-vectors",
|
| 2596 |
]
|
| 2597 |
|
| 2598 |
DEFAULT_DATASET = "codelion/Qwen3-0.6B-pts"
|
|
|
|
| 2582 |
# causal-event files too -- upload one and add it here, or load it from disk with
|
| 2583 |
# the file upload. Listing PTS datasets that have not been published yet would put
|
| 2584 |
# entries in the dropdown that can only fail.
|
| 2585 |
+
# The unified `-pts` datasets are what this visualizer is for: pivotal reasoning
|
| 2586 |
+
# events at all three scales, with the multiscale timeline, causal graph, and
|
| 2587 |
+
# workspace heatmap. The other PTS repos don't earn a slot here:
|
| 2588 |
+
# - `-thought-anchors` duplicate the sentence events already in `-pts`
|
| 2589 |
+
# - `-dpo-pairs` are training pairs, not events (no charts render)
|
| 2590 |
+
# - `-steering-vectors` are activation vectors -- only the embedding tab
|
| 2591 |
+
# applies; the multiscale views are token-only
|
| 2592 |
+
# All of them remain linked in this Space's README `datasets:` list for
|
| 2593 |
+
# discovery. Any of them can still be loaded by pasting its id or uploading it.
|
| 2594 |
HF_DATASETS = [
|
| 2595 |
"codelion/Qwen3-0.6B-pts",
|
|
|
|
| 2596 |
"codelion/DeepSeek-R1-Distill-Qwen-1.5B-pts",
|
|
|
|
| 2597 |
]
|
| 2598 |
|
| 2599 |
DEFAULT_DATASET = "codelion/Qwen3-0.6B-pts"
|