Views
No views yet
| Direction | Run Code | Core Idea |
|---|---|---|
| Phase Decomposition | phase | Decompose ICVs into execution/reflection/transition components |
| Layer-Aware Composition | layer | Different composition strategies for early/mid/late transformer layers |
| Uncertainty Gating | adaptive | Entropy-adaptive steering strength with norm preservation |
| Test-Time Compute | ttc | Diverse steering ensemble + majority vote / LatentSeek warm-start |
1git clone https://huggingface.co/kweCobi/metavector-autoresearch
2cd metavector-autoresearch
3chmod +x setup.sh launch_all.sh monitor.sh
4./setup.sh1cd claudini
2./launch_all.sh # launches 4 tmux sessions
3./monitor.sh # cross-direction leaderboard1cd claudini
2claude
3> /loop /metavector phase improve zero-shot reasoning on MATH-500 via phase-specific ICV decompositionmetavector_claudini/
├── setup.sh # One-time setup
├── launch_all.sh # Launch 4 parallel tmux sessions
├── monitor.sh # Cross-direction leaderboard
├── CLAUDE.md # Developer guide for the agent
├── skills/metavector/SKILL.md # Claude Code autoresearch skill
├── configs/
│ ├── mv_math500_dev.yaml # Fast dev (1.5B, 50 problems)
│ ├── mv_math500.yaml # Full eval (7B, 500 problems)
│ ├── mv_gsm8k_dev.yaml # GSM8K sanity check
│ └── mv_aime.yaml # AIME 2024 hard eval
├── metavector_base/ # Shared evaluation code
│ ├── steering_optimizer.py # SteeringOptimizer ABC
│ ├── source_bank.py # ICV bank management
│ ├── evaluator.py # Benchmark runner
│ ├── baselines.py # Zero-shot, static ICV, holistic composition
│ └── utils.py # Hidden states, phase classification, answer extraction
└── starter_methods/ # v1 for each direction
├── mv_phase_v1/
├── mv_layer_v1/
├── mv_adaptive_v1/
└── mv_ttc_v1/