codelion commited on
Commit
fb766db
·
verified ·
1 Parent(s): 6d6ec9f

Dropdown: only the unified PTS datasets

Browse files
Files changed (1) hide show
  1. app.py +9 -8
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
- # Only datasets the visualizer actually renders something for. The unified
2586
- # `-pts` datasets already contain the sentence-scale (thought-anchor) events, so
2587
- # the separate `-thought-anchors` repos are duplicate subsets; the `-dpo-pairs`
2588
- # repos are training data (prompt/chosen/rejected), not events, and produce no
2589
- # charts. Both are still linked in this Space's README `datasets:` list for
2590
- # discovery, but there is no reason to offer them here.
 
 
 
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"