[CVPR 26] Recurrent Reasoning with Vision-Language Models for Estimating Long-Horizon Embodied Task Progress

June 1, 2026 ยท View on GitHub

๐Ÿ“‘ Paper ย ย  | ย ย  ๐Ÿค— Model & Data

Model Framework

We propose R2VLM, Recurrent Reasoning Vision-Language Model for long-horizon embodied task progress estimation.

Training

We leverage LLaMA-Factory for supervised fine-tuning and verl for reinforcement learning. To support our data format, we modify the multi-turn rollout algorithm in verl by removing historical contexts from previous turns and introducing history chain-of-thought reasoning. Our modified verl code is available at dhcpack/verl-0.5.0-r2vlm.

You can obtain the training code by cloning the submodules:

git submodule update --init --recursive

These two training frameworks are tracked in this repository as Git submodules under code/framework/:

  • code/framework/LLaMA-Factory
  • code/framework/verl

Please refer to the requirements of the corresponding training frameworks for installation. After setting up both frameworks, you can train R2VLM using Qwen2.5-VL-7B-Instruct as the base model.

Pretrained weights

We release both SFT and RL models trained on the Alfred progress estimation dataset. Training was conducted on 8ยทA100.

ModelBase ModelTraining StageLinkTraining Time
R2VLM-Alfred-SFTQwen2.5-VL-7BSFTHugging Face50 hours
R2VLM-Alfred-RLR2VLM-Alfred-SFTRLHugging Face75 hours

Datasets

We release the Alfred progress estimation dataset at zhangyuelin/alfred_progress_data. The SFT split includes cold-start chain-of-thought annotations generated with Qwen2.5-VL-72B.

The corresponding video data should be obtained from the official Alfred repository: askforalfred/alfred.

Benchmarks

We release the Alfred benchmark at zhangyuelin/alfred_progress_bench.

Citation

If you find our work helpful, please cite as:

@InProceedings{zhang2026recurrent,
    author    = {Zhang, Yuelin and Cheng, Sijie and Li, Chen and Li, Zongzhao and Huang, Yuxin and Liu, Yang and Huang, Wenbing},
    title     = {Recurrent Reasoning with Vision-Language Models for Estimating Long-Horizon Embodied Task Progress},
    booktitle = {Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR)},
    month     = {June},
    year      = {2026},
    pages     = {41150-41159}
}