Views
No views yet
checkpoints/
champion-vjepa2-deploy/ # Deployed single-model champion (0.906 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/ # 150 Nexar + 50 ASR run logs sampled from ~3,190 + ~900
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/orze-anon) for pinned versions.1# Download full V-JEPA 2 checkpoint + head
2huggingface-cli download orze-ai/orze-nips-2026 \
3 computed_values/results/best_model.pt \
4 --repo-type model --local-dir ./ckpts
5
6# Evaluate with 4-view TTA + CV-mix aggregation
7python eval_e2e.py \
8 --checkpoint ckpts/computed_values/results/best_model.pt \
9 --tta 4 --aggregation cv_mix
10# Expected: mAP_ALL = 0.906 (Public 0.920 / Private 0.893)1huggingface-cli download orze-ai/orze-nips-2026 \
2 checkpoints/search-best-vjepa2 --repo-type model --local-dir ./ckpts/search_best
3python eval_e2e.py --checkpoint ckpts/search_best/best_model.pt --tta 1
4# Expected: mAP ≈ 0.7271huggingface-cli download orze-ai/orze-nips-2026 checkpoints/best-non-vjepa2 \
2 --repo-type model --local-dir ./ckpts/non_vjepa
3python scripts/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.51 | 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# {'architecture': 0.12, 'learning_rate': 0.79, ...}
6"1huggingface-cli download orze-ai/orze-nips-2026 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)