CoolFace
Modelpublic

stanfordasl/nuscenes-waypoints-model

sourceHugging Faceapache-2.0updated 3mo agoView on Hugging Face
0likes19downloads
Model Card

nuScenes Waypoints Model (Trajectory-Only)

Part of the **RnB-EnCoRe-SelfDriving** collection from the Stanford Autonomous Systems Lab.

  • โ€”๐Ÿ“„ Paper: https://arxiv.org/abs/2602.08167
  • โ€”๐Ÿ’ป Code / usage: https://github.com/rnb-encore/RnB-EnCoRe-SelfDriving

This is a Qwen3-VL-4B vision-language model fine-tuned on nuScenes driving data to directly predict a future waypoint trajectory from multi-camera observations, without producing intermediate natural-language reasoning.

For the reasoning + waypoints variant, see stanfordasl/nuscenes-rnbencore-reasoning-waypoints.

Model details

  • โ€”Base model: Qwen/Qwen3-VL-4B-Instruct (Qwen3VLForConditionalGeneration)
  • โ€”Architecture: hidden size 2560, 36 layers
  • โ€”Modality: image/video + text โ†’ text
  • โ€”Task: future trajectory (waypoint) prediction on nuScenes
  • โ€”Output: predicted waypoints (no chain-of-thought)

Training

  • โ€”Fine-tuned on a nuScenes VQA trajectory-only dataset
  • โ€”Epochs: 30 (10,980 optimizer steps)
  • โ€”Max sequence length: 2048

Usage

For dataset preparation, prompting, inference, and evaluation, follow the instructions in the project repository: https://github.com/rnb-encore/RnB-EnCoRe-SelfDriving

python
from transformers import AutoModelForImageTextToText, AutoProcessor

model_id = "stanfordasl/nuscenes-waypoints-model"
processor = AutoProcessor.from_pretrained(model_id)
model = AutoModelForImageTextToText.from_pretrained(model_id, torch_dtype="auto", device_map="auto")

# Build a chat message with the driving camera image(s) + prompt,
# then processor.apply_chat_template(...) and model.generate(...).
# See the GitHub repo for the exact prompt format and post-processing.

Intended use & limitations

This model is a research artifact for autonomous-driving planning experiments. It was trained on nuScenes and is not intended for deployment in real vehicles or safety-critical settings. Outputs may be inaccurate or unsafe; always validate in simulation before any downstream use.

Citation

If you use this model, please cite the RnB-EnCoRe self-driving work:

  • โ€”Paper: https://arxiv.org/abs/2602.08167
  • โ€”Code: https://github.com/rnb-encore/RnB-EnCoRe-SelfDriving