Views
No views yet
| top_p | teacher_tok | teacher_blk | indexer_blk | idx_recall |
|---|---|---|---|---|
| 0.50 | 0.001 | 0.009 | 0.032 | 0.487 |
| 0.70 | 0.003 | 0.023 | 0.075 | 0.700 |
| 0.80 | 0.007 | 0.041 | 0.117 | 0.784 |
| 0.90 | 0.018 | 0.083 | 0.200 | 0.874 |
| 0.95 | 0.037 | 0.140 | 0.288 | 0.918 |
indexer_final.pt — clean substate, 256 tensors of shape [32, 256] bf16state_dict.pt — same content, raw state_dict formatstage1_summary.json— full per-head KL breakdown for all 8 GA layersloss_curve.csv — step,loss,lr,distill_kl,agree_kl,entropy,tok/s1import torch
2from train.surgeries._rtpurbo_indexer import RetrievalIndexer
3
4state = torch.load("indexer_final.pt", map_location="cpu")
5# state is a flat dict of 256 tensors: q_heads.<layer_idx>.weight
6# pass to RetrievalIndexer(d_idx=32, head_dim=256).load_state_dict(...)