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 dataset preparation, prompting, inference, and evaluation, follow the instructions in the project repository:
https://github.com/rnb-encore/RnB-EnCoRe-SelfDriving
1from transformers import AutoModelForImageTextToText, AutoProcessor
2
3model_id = "stanfordasl/nuscenes-waypoints-model"
4processor = AutoProcessor.from_pretrained(model_id)
5model = AutoModelForImageTextToText.from_pretrained(model_id, torch_dtype="auto", device_map="auto")
6
7# Build a chat message with the driving camera image(s) + prompt,
8# then processor.apply_chat_template(...) and model.generate(...).
9# See the GitHub repo for the exact prompt format and post-processing.