Views
No views yet
experiments/expP_110_R10_lr1e4_wt_combfull_l10/ckpts/| File | Type | Format |
|---|---|---|
l10.pt | real file (~83 MB, committed) | Single-layer state_dict (latest "best" snapshot, recommended for inference) |
l10_best_f1.pt | local symlink → experiments/... (untracked) | Single-layer state_dict (best F1 epoch) |
l10_best_recall_k.pt | local symlink → experiments/... (untracked) | Single-layer state_dict (best recall@K epoch) |
l10.pt is the only file committed to git. The other two are convenience symlinks for local
experimentation; pull experiments/ separately if you need them.wq_a.weight — [1024, 4096]
wq_b.weight — [N_HEADS*128, 1024] (N_HEADS=64)
q_norm_weight — [1024]
weights_proj.weight — [N_HEADS, 4096]
freqs_cis — RoPE precomputed (optional)1# Single-layer inference (default path):
2python inference.py --ckpt best_ckpt/l10.pt --layer 10 --data-path ./data/doc_00030.pklinference.py returns raw logits (not sigmoid'd). For 0-1 probabilities call torch.sigmoid(logits)
externally; for top-K selection use logits directly (sigmoid is monotonic and unnecessary).1cp experiments/expP_NEW/ckpts/ckpt_best.pt best_ckpt/l10.pt
2git add best_ckpt/l10.pt && git commit -m "Update best_ckpt/l10.pt to expP_NEW"1ln -sfn ../experiments/expP_NEW/ckpts/ckpt_best_f1.pt best_ckpt/l10_best_f1.pt
2ln -sfn ../experiments/expP_NEW/ckpts/ckpt_best_recall_k.pt best_ckpt/l10_best_recall_k.ptretrievers.l{10,12,20}.* keys) and lives at:experiments/expR_601_stage2_pw_from_R462_ddp/ckpts/ckpt_joint_best_ens_f1.ptrecall@K but cannot use sigmoid threshold 0.5 directly.
For deployment, prefer P110 (l10.pt) unless you specifically need the joint 3-layer format.