CoolFace
Modelpublic

z-lab/Alpamayo-1.5-10B

sourceHugging Faceotherupdated 3mo agoView on Hugging Face
6likes8.8kdownloads
Model Card

Alpamayo 1.5 (FlashDrive)

Flash Vision-Language-Action Inference for Autonomous Driving

Paper ![GitHub](https://github.com/z-lab/flashdrive) ![Blog](https://z-lab.ai/projects/flashdrive/) ![Models](https://huggingface.co/collections/z-lab/flashdrive)

FlashDrive accelerates Alpamayo 1.5 — one of NVIDIA's 10B-parameter vision-language-action models for autonomous driving — by 4.7× with no loss in accuracy, through streaming inference, DFlash speculative reasoning, ParoQuant W4A8 quantization, adaptive action caching, and torch.compile.

This repository mirrors the weights of nvidia/Alpamayo-1.5-10B and is the base checkpoint of the FlashDrive stack. Loading it pulls the derived companions automatically:

CheckpointContents
z-lab/Alpamayo-1.5-10B-PAROW4A8 (ParoQuant) language-model weights
z-lab/Alpamayo-1.5-10B-DFlashDFlash block-diffusion draft model

Usage

Install FlashDrive, then load this base checkpoint — the -PARO and -DFlash companions are fetched automatically:

python
import flashdrive

model = flashdrive.from_pretrained("z-lab/Alpamayo-1.5-10B")

pred_xyz, pred_rot = model.sample_trajectories_streaming(data)

The first call per stream only prefills the KV cache and returns (None, None); every later window returns trajectories. For an end-to-end benchmark on a PhysicalAI-AV clip:

bash
python scripts/infer.py --model-path z-lab/Alpamayo-1.5-10B

Performance

On a single RTX PRO 6000, averaged over 100 PhysicalAI-AV clips, FlashDrive runs Alpamayo 1.5 at 4.7× lower latency (717 → 151 ms per window) while minADE improves from 1.705 to 1.573. See the repository for the full benchmark.

License

The Alpamayo weights in this repository are released by NVIDIA under the NVIDIA License, which permits non-commercial use only and extends to derivative works. The FlashDrive inference code is separately released under the MIT License.

Citation

bibtex
@article{li2026flashdrive,
  title  = {{FlashDrive: Flash Vision-Language-Action Inference for Autonomous Driving}},
  author = {Li, Zekai and Liang, Yihao and Zhang, Hongfei and Chen, Jian and Liang, Yesheng and Liu, Zhijian},
  year   = {2026}
}