Improve model card: add metadata, library name, and paper links
Browse filesHi! I'm Niels, part of the community science team at Hugging Face.
I noticed that this model card could be improved with additional metadata and links to help users find and use your model more easily. This PR:
- Updates the `pipeline_tag` to `text-generation` (standard for causal LLMs).
- Adds the `library_name: transformers` tag to enable the "Use in Transformers" button.
- Adds links to the research paper and the official GitHub repository.
- Provides a summary of the Proactive Interactive Reasoning (PIR) paradigm.
- Includes the citation for the paper.
Let me know if you have any questions!
README.md
CHANGED
|
@@ -1,11 +1,52 @@
|
|
| 1 |
---
|
|
|
|
|
|
|
| 2 |
language:
|
| 3 |
- en
|
| 4 |
metrics:
|
| 5 |
- accuracy
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
pipeline_tag: question-answering
|
| 9 |
tags:
|
| 10 |
- Reasoning-while-asking
|
| 11 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
base_model:
|
| 3 |
+
- deepseek-ai/DeepSeek-R1-Distill-Qwen-7B
|
| 4 |
language:
|
| 5 |
- en
|
| 6 |
metrics:
|
| 7 |
- accuracy
|
| 8 |
+
library_name: transformers
|
| 9 |
+
pipeline_tag: text-generation
|
|
|
|
| 10 |
tags:
|
| 11 |
- Reasoning-while-asking
|
| 12 |
+
---
|
| 13 |
+
|
| 14 |
+
# Reasoning While Asking: Proactive Interactive Reasoning (PIR)
|
| 15 |
+
|
| 16 |
+
This repository contains the weights for the model presented in the paper [Reasoning While Asking: Transforming Reasoning Large Language Models from Passive Solvers to Proactive Inquirers](https://huggingface.co/papers/2601.22139).
|
| 17 |
+
|
| 18 |
+
- **Code:** [GitHub Repository](https://github.com/SUAT-AIRI/Proactive-Interactive-R1)
|
| 19 |
+
|
| 20 |
+
## Introduction
|
| 21 |
+
|
| 22 |
+
Reasoning-oriented Large Language Models (LLMs) often remain limited by a *blind self-thinking* paradigm: performing extensive internal reasoning even when critical information is missing or ambiguous.
|
| 23 |
+
|
| 24 |
+
**PIR (Proactive Interactive Reasoning)** is a new reasoning paradigm that transforms LLMs from passive solvers into proactive inquirers that interleave reasoning with clarification. PIR-enabled models detect uncertainty during reasoning and actively ask users for clarification before proceeding, reducing hallucinations and misaligned conclusions.
|
| 25 |
+
|
| 26 |
+
## Demo
|
| 27 |
+
|
| 28 |
+
Experience the "Reasoning While Asking" capability using the interactive script provided in the [official repository](https://github.com/SUAT-AIRI/Proactive-Interactive-R1):
|
| 29 |
+
|
| 30 |
+
```bash
|
| 31 |
+
python run_demo_interactive_generation.py \
|
| 32 |
+
--input_file "verl-tool/datasets/mip/gsm8k.json" \
|
| 33 |
+
--model_url "http://localhost:1136" \
|
| 34 |
+
--model_name Proactive-Interactive-R1-Math-7B \
|
| 35 |
+
--output_dir results/
|
| 36 |
+
```
|
| 37 |
+
|
| 38 |
+
## Citation
|
| 39 |
+
|
| 40 |
+
If you find this work useful, please cite the paper:
|
| 41 |
+
|
| 42 |
+
```bibtex
|
| 43 |
+
@misc{chen2026reasoningaskingtransformingreasoning,
|
| 44 |
+
title={Reasoning While Asking: Transforming Reasoning Large Language Models from Passive Solvers to Proactive Inquirers},
|
| 45 |
+
author={Xin Chen and Feng Jiang and Yiqian Zhang and Hardy Chen and Shuo Yan and Wenya Xie and Min Yang and Shujian Huang},
|
| 46 |
+
year={2026},
|
| 47 |
+
eprint={2601.22139},
|
| 48 |
+
archivePrefix={arXiv},
|
| 49 |
+
primaryClass={cs.CL},
|
| 50 |
+
url={https://arxiv.org/abs/2601.22139},
|
| 51 |
+
}
|
| 52 |
+
```
|