← Latest papers
💻 computer science

CLEAR: Closed-Loop Reinforcement Learning at Scale for End-to-End Autonomous Driving

CLEAR introduces a scalable closed-loop reinforcement learning framework for end-to-end autonomous driving that trains a residual waypoint policy on top of pretrained Vision-Language-Action models using a heterogeneous simulation pipeline, achieving state-of-the-art performance on challenging benchmarks by overcoming the distribution shift limitations of traditional imitation learning.

Original authors: Yunxiao Shi, Hong Cai, Mohammad Ghavamzadeh, Fatih Porikli

Published 2026-07-07
📖 4 min read☕ Coffee break read

Original authors: Yunxiao Shi, Hong Cai, Mohammad Ghavamzadeh, Fatih Porikli

Original paper licensed under CC BY 4.0 (http://creativecommons.org/licenses/by/4.0/). This is an AI-generated explanation of the paper below. It is not written or endorsed by the authors. For technical accuracy, refer to the original paper. Read full disclaimer

Imagine teaching a self-driving car. For a long time, the best way to do this was Imitation Learning. Think of this like a student driver sitting in the back seat of a car driven by a perfect expert. The student just copies what the expert does. If the expert turns left, the student turns left.

The problem? This only works in a "closed book" test. If the student sees a situation the expert never showed them, or if the student makes a tiny mistake, they get confused. In the real world (or a complex simulation), one small mistake can lead to a crash, and the student doesn't know how to recover because they were only taught to copy, not to think or adapt.

Recently, researchers started using Vision-Language-Action (VLA) models. These are like super-smart driving instructors who can "see" the road, "read" the traffic signs, and "speak" the driving commands all at once. But even these smart instructors were mostly trained using the "copy the expert" method, leaving them vulnerable when things go wrong.

Enter CLEAR.

The Big Idea: The "Residual" Coach

The authors of this paper built a system called CLEAR to fix this. Instead of just copying, they taught the AI to be a coach that corrects a trainee.

  1. The Pretrained "Trainee": First, they take a very smart VLA model (the trainee) and teach it the basics using a huge library of expert driving data. This trainee is good at predicting a general path, like a GPS saying, "Turn left in 500 feet."
  2. The "Coach" (RL): Then, they introduce Reinforcement Learning (RL). Imagine a coach standing next to the trainee. The trainee makes a prediction (the "base path"), and the coach says, "Actually, turn a little bit more to the left to avoid that pothole."
    • The AI doesn't relearn how to drive from scratch (which would take too much computer power).
    • Instead, it learns a residual policy. This is like learning the difference between a good plan and a perfect plan. It only learns the small "corrections" needed to fix the trainee's mistakes.

The "Heterogeneous Pipeline": Solving the Traffic Jam

Training these AI coaches is incredibly data-hungry. You need to run millions of driving simulations to teach them.

Here's the bottleneck:

  • The Simulator (The Road): Running a realistic driving simulator (like CARLA) is heavy on computer graphics. It's like running a high-end video game.
  • The Learner (The Brain): The AI model is also huge and needs powerful graphics cards (GPUs) to think.

If you try to run the simulator and the brain on the same computer, they fight over the graphics cards. It's like trying to run a marathon and a heavy weightlifting competition in the same small gym at the same time; everything slows down or crashes.

CLEAR's Solution: They built a heterogeneous pipeline.

  • They put the Simulators (the roads) on one set of older, cheaper computers.
  • They put the AI Brain (the learner) on a separate, super-powerful cluster of computers.
  • They connected them with a digital tunnel (SSH).

This is like having a fleet of remote race tracks (the simulators) sending data to a central headquarters (the brain). The tracks don't have to be fancy; they just need to run. The brain gets all the data it needs without being slowed down by the graphics rendering. This allowed them to run 64 simulations at the same time and train on 100 million samples.

The Results: From "Failing" to "Winning"

The paper tested this system on some very difficult driving challenges (like the "longest6" and "Bench2Drive" benchmarks).

  • Before CLEAR: Previous methods, even the smart ones, failed almost 100% of the time on these hard routes. They would crash or get stuck because they couldn't recover from small errors.
  • With CLEAR: The system learned to correct its own mistakes. It didn't just follow a script; it learned to navigate around obstacles and handle complex traffic.
    • On one benchmark, the success rate jumped from 0% (total failure) to 25%.
    • On another, it achieved the highest scores ever recorded, beating all previous methods in driving efficiency and safety.

Summary

Think of CLEAR as taking a smart but rigid student driver, giving them a super-smart coach that learns to nudge them in the right direction when they start to drift, and building a massive, distributed training facility so they can practice millions of miles without the computer crashing. The result is a self-driving system that is significantly better at handling the messy, unpredictable reality of the road.

Drowning in papers in your field?

Get daily digests of the most novel papers matching your research keywords — with technical summaries, in your language.

Try Digest →