Views
No views yet
Brain-inspired Vision-Language-Action (VLA) checkpoint released with the AlphaBrain framework. Trained jointly on all four LIBERO suites — Goal, Spatial, Object, and Long — for direct evaluation across the full LIBERO benchmark without retraining.
libero_all data mix.| Architecture | NeuroVLA (Qwen2.5-VL-3B + layer-wise Q-Former + SNN head) |
| Base VLM | Qwen/Qwen2.5-VL-3B-Instruct |
| Q-Former | Layers 36 → 37 · num_query_tokens=8 · output_dim=768 |
| Action head | DiT-based, hidden_size=1024, action_dim=7, state_dim=7, chunk 16 |
| Training data | LIBERO · all 4 suites (Goal + Spatial + Object + Long) · dataset_mix=libero_all |
| Training type | Supervised fine-tuning (single run; not continual learning) |
| Attention | SDPA (not flash-attention, to avoid ABI pinning) |
| Optimiser | AdamW · lr_base = 2.5e-5 · cosine-with-min-lr · 5 000 warmup |
| Step budget | 50 000 (this release) · saved every 10 000 steps |
| Hardware / batch | 2 × A800 80 GB · per_device_batch_size = 16 |
├── README.md model card
├── framework_config.yaml AlphaBrain framework configuration
├── dataset_statistics.json action normalisation statistics (required for inference)
├── model.safetensors full VLA weights (~7.7 GB)
├── resume_meta.json training metadata (step count, GPU count)
└── qwen_pretrained/ Qwen2.5-VL tokenizer + preprocessor configs1git clone https://github.com/AlphaBrainGroup/AlphaBrain.git
2cd AlphaBrain
3pip install -e .
4
5export PRETRAINED_MODELS_DIR=/path/to/models # must contain Qwen2.5-VL-3B-Instruct/
6
7huggingface-cli download AlphaBrainGroup/neurovla-libero-all4suite \
8 --local-dir ./neurovla_libero_all
9
10python deployment/model_server/server_policy.py \
11 --ckpt_path ./neurovla_libero_all --port 10093 --use_bf161# Framework's NeuroVLA pretraining entry
2bash scripts/run_brain_inspired_scripts/run_neurovla_pretrain.sh \
3 --yaml configs/neurovla_all4suite_libero.yaml # (or equivalent config for 4-suite mix)framework_config.yaml is the exact training
configuration used for this checkpoint.AlphaBrainGroup/neurovla-cl-libero-goal
and its LoRA variant.--framework.qwenvl.attn_implementation=flash_attention_2.1@misc{alphabrain2026,
2 title = {AlphaBrain: A Modular Open-Source Framework for Embodied Intelligence Research},
3 author = {AlphaBrain Team},
4 year = {2026},
5 url = {https://github.com/AlphaBrainGroup/AlphaBrain}
6}