Found-RL: foundation model-enhanced reinforcement learning for autonomous driving
Paper β’ 2602.10458 β’ Published
How to use ys-qu/found-rl_vlms with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("image-text-to-text", model="ys-qu/found-rl_vlms") # Load model directly
from transformers import AutoModel
model = AutoModel.from_pretrained("ys-qu/found-rl_vlms", dtype="auto")How to use ys-qu/found-rl_vlms with vLLM:
# Install vLLM from pip:
pip install vllm
# Start the vLLM server:
vllm serve "ys-qu/found-rl_vlms"
# Call the server using curl (OpenAI-compatible API):
curl -X POST "http://localhost:8000/v1/completions" \
-H "Content-Type: application/json" \
--data '{
"model": "ys-qu/found-rl_vlms",
"prompt": "Once upon a time,",
"max_tokens": 512,
"temperature": 0.5
}'docker model run hf.co/ys-qu/found-rl_vlms
How to use ys-qu/found-rl_vlms with SGLang:
# Install SGLang from pip:
pip install sglang
# Start the SGLang server:
python3 -m sglang.launch_server \
--model-path "ys-qu/found-rl_vlms" \
--host 0.0.0.0 \
--port 30000
# Call the server using curl (OpenAI-compatible API):
curl -X POST "http://localhost:30000/v1/completions" \
-H "Content-Type: application/json" \
--data '{
"model": "ys-qu/found-rl_vlms",
"prompt": "Once upon a time,",
"max_tokens": 512,
"temperature": 0.5
}'docker run --gpus all \
--shm-size 32g \
-p 30000:30000 \
-v ~/.cache/huggingface:/root/.cache/huggingface \
--env "HF_TOKEN=<secret>" \
--ipc=host \
lmsysorg/sglang:latest \
python3 -m sglang.launch_server \
--model-path "ys-qu/found-rl_vlms" \
--host 0.0.0.0 \
--port 30000
# Call the server using curl (OpenAI-compatible API):
curl -X POST "http://localhost:30000/v1/completions" \
-H "Content-Type: application/json" \
--data '{
"model": "ys-qu/found-rl_vlms",
"prompt": "Once upon a time,",
"max_tokens": 512,
"temperature": 0.5
}'How to use ys-qu/found-rl_vlms with Docker Model Runner:
docker model run hf.co/ys-qu/found-rl_vlms
These VLMs serve for the paper "Found-RL: Foundation Model-Enhanced Reinforcement Learning for Autonomous Driving".
In this work, we use fine-tuned VLMs to provide feedback for reinforcement learning agents in autonomous driving scenarios.
RGB + Text (LoRA SFT):
Rendered BEV + Text (Full SFT):
If you use these VLMs in your research, please cite our paper:
@misc{qu2026foundrl,
title={Found-RL: foundation model-enhanced reinforcement learning for autonomous driving},
author={Yansong Qu and Zihao Sheng and Zilin Huang and Jiancong Chen and Yuhao Luo and Tianyi Wang and Yiheng Feng and Samuel Labi and Sikai Chen},
year={2026},
eprint={2602.10458},
archivePrefix={arXiv},
primaryClass={cs.AI},
url={https://arxiv.org/abs/2602.10458},
}