Views
No views yet
checkpoints/
champion-vjepa2-deploy/ # Deployed single-model champion (0.910 mAP_ALL on Nexar)
search-best-vjepa2/ # LLM search-policy best (0.727 mAP on Nexar)
best-non-vjepa2/ # Strongest non-V-JEPA 2 baseline (Table 3 cross-backbone)
asr-8b-lora/ # 8B LoRA adapter (5.30% WER, #1 on Open ASR Leaderboard)
experiments_sample/ # 256 Nexar + 50 ASR run logs sampled from ~3,190 + ~2,643
computed_values/ # JSON artifacts driving all figures and tables
data/
anova.json # Section 4 ANOVA decomposition
convergence.json # Figure 1 search-policy trajectories
e2e_anova.json # Section 6 E2E LoRA boundary ablation
ablation.json # Obfuscated-names ablation
cost_efficiency_deep.json # Appendix cost table
deployable_analysis/ # Cross-checks for Section 5 (SMAC / LLM test-set results)
oracle_correction.json # Sample-size-matched comparison
results/
best_model.pt # Full V-JEPA 2 champion (weights + head)
soup_best.pt # Model-soup variant used in ablationtorch + huggingface_hub + peft environment.
See the requirements.txt in the anonymous code repository
(https://anonymous.4open.science/r/nips-2026-submission-1C52) for pinned versions.alpha * last_clip + (1 - alpha) * top6_mean to combine temporal position
with confidence ranking.1# Download full V-JEPA 2 checkpoint + head
2huggingface-cli download nips2026-reviewer-artifacts/nips2026-artifacts-3894 \
3 computed_values/results/best_model.pt \
4 --repo-type model --local-dir ./ckpts
5
6# Champion: 12-TTA + cv_mix (0.910 mAP_ALL)
7python scripts/nexar/eval_e2e.py \
8 --checkpoint ckpts/computed_values/results/best_model.pt \
9 --tta 12 --aggregation cv_mix
10# Expected: mAP_ALL = 0.910 (Public 0.923 / Private 0.900)
11
12# Baseline: 4-TTA + mean aggregation (0.906 mAP_ALL)
13python scripts/nexar/eval_e2e.py \
14 --checkpoint ckpts/computed_values/results/best_model.pt \
15 --tta 4 --aggregation mean
16# Expected: mAP_ALL = 0.9061huggingface-cli download nips2026-reviewer-artifacts/nips2026-artifacts-3894 \
2 checkpoints/search-best-vjepa2 --repo-type model --local-dir ./ckpts/search_best
3python scripts/nexar/eval_e2e.py --checkpoint ckpts/search_best/best_model.pt --tta 1
4# Expected: mAP ≈ 0.727mvitv2s_matched_hp/)1huggingface-cli download nips2026-reviewer-artifacts/nips2026-artifacts-3894 checkpoints/best-non-vjepa2 \
2 --repo-type model --local-dir ./ckpts/non_vjepa
3python scripts/nexar/cross_backbone_transfer.py \
4 --vjepa ckpts/search_best/best_model.pt \
5 --alt ckpts/non_vjepa/best_model.pt \
6 --output xfer.json1python3 -c "
2import json
3d = json.load(open('computed_values/data/anova.json'))
4print('Nexar eta^2_arch:', d['nexar']['eta_squared']['architecture'])
5print('UCF-101 eta^2_arch:', d['ucf101']['eta_squared']['architecture'])
6"
7# Nexar eta^2_arch: 0.74 cell-capped primary (0.51 adaptive sensitivity) | UCF-101 eta^2_arch: 0.1481python analyze_predictions.py \
2 --experiments experiments_sample/ \
3 --output anova_from_sample.json1python3 -c "
2import json
3d = json.load(open('computed_values/data/e2e_anova.json'))
4print(d['eta_squared'])
5# {'backbone': 0.038, 'encoder': 0.0006, 'backbone_x_encoder': 0.043, 'learning_rate': 0.823}
6"1huggingface-cli download nips2026-reviewer-artifacts/nips2026-artifacts-3894 checkpoints/asr-8b-lora \
2 --repo-type model --local-dir ./ckpts/asr_8b
3# Merge adapter on base model and evaluate on Open ASR test bundle
4python asr_eval.py --adapter ckpts/asr_8b/ --benchmark open_asr
5# Expected WER: 5.30%experiments_sample/ contains 150 Nexar + 50 ASR runs sampled uniformly at
random (seed 20260421) from the full campaign. Each run directory contains:idea_config.yaml — the configuration proposed by the agentmetrics.json — the resulting test-set metricsclaim.json — the agent's rationale (where logged)