DECS_NRP_DETECTOR / README.md
pixas's picture
Update README.md
2474521 verified
metadata
base_model:
  - Qwen/Qwen2.5-1.5B-Instruct
language:
  - en
license: mit
library_name: transformers
pipeline_tag: text-generation

DECS NRP Detector

This repository contains the NRP (Necessary Reasoning Prefix) detector model used in the DECS algorithm, as presented in the paper Overthinking Reduction with Decoupled Rewards and Curriculum Data Scheduling.

The NRP detector is designed to determine whether a given reasoning chunk contains the ground truth signal, enabling surgically precise token-level rewards to reduce "overthinking" in reasoning models.

Usage

According to the official repository, you can deploy the NRP detector using vLLM:

vllm serve --model pixas/DECS_NRP_DETECTOR --port 10041 

Citation

If you use this model, please cite the following work:

@inproceedings{jiang2026decs,
  title     = {Overthinking Reduction with Decoupled Rewards and Curriculum Data Scheduling},
  author    = {Jiang, Shuyang and Tao, Xiaofeng and Zhang, Kui and Xiao, Yanghua},
  booktitle = {International Conference on Learning Representations (ICLR)},
  year      = {2026},
  note      = {Oral},
  url       = {https://arxiv.org/abs/2509.25827}
}