Add metadata and improve model card
#1
by nielsr HF Staff - opened
README.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
The official repository for the paper ["CoDiQ: Test-Time Scaling for Controllable Difficult Question Generation"](https://arxiv.org/pdf/2602.01660)
|
| 2 |
|
|
|
|
|
|
|
| 3 |
## 💡 Introduction
|
| 4 |
|
| 5 |
Large Reasoning Models (LRMs) benefit substantially from training on challenging, competition-level questions. However, existing automated synthesis methods struggle with **"fake hard"** questions—problems that are complex but unsolvable or ill-defined.
|
|
@@ -13,6 +28,21 @@ Key innovations include:
|
|
| 13 |
|
| 14 |
Training LRMs on CoDiQ-Corpus substantially enhances downstream reasoning performance. The [CoDiQ-Generator](https://huggingface.co/AleXGroup/CoDiQ-Gen-8B) and [CoDiQ-Corpus](https://huggingface.co/datasets/AleXGroup/CoDiQ-Corpus) are released.
|
| 15 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 16 |
|
| 17 |
## 📖 Citation
|
| 18 |
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
library_name: transformers
|
| 4 |
+
pipeline_tag: text-generation
|
| 5 |
+
base_model: Qwen/Qwen3-8B
|
| 6 |
+
tags:
|
| 7 |
+
- reasoning
|
| 8 |
+
- question-generation
|
| 9 |
+
- test-time-scaling
|
| 10 |
+
---
|
| 11 |
+
|
| 12 |
+
# CoDiQ-Gen-8B
|
| 13 |
+
|
| 14 |
The official repository for the paper ["CoDiQ: Test-Time Scaling for Controllable Difficult Question Generation"](https://arxiv.org/pdf/2602.01660)
|
| 15 |
|
| 16 |
+
Code: [GitHub - ALEX-nlp/CoDiQ](https://github.com/ALEX-nlp/CoDiQ)
|
| 17 |
+
|
| 18 |
## 💡 Introduction
|
| 19 |
|
| 20 |
Large Reasoning Models (LRMs) benefit substantially from training on challenging, competition-level questions. However, existing automated synthesis methods struggle with **"fake hard"** questions—problems that are complex but unsolvable or ill-defined.
|
|
|
|
| 28 |
|
| 29 |
Training LRMs on CoDiQ-Corpus substantially enhances downstream reasoning performance. The [CoDiQ-Generator](https://huggingface.co/AleXGroup/CoDiQ-Gen-8B) and [CoDiQ-Corpus](https://huggingface.co/datasets/AleXGroup/CoDiQ-Corpus) are released.
|
| 30 |
|
| 31 |
+
## 🛠️ Quick Start
|
| 32 |
+
|
| 33 |
+
### Installation
|
| 34 |
+
```bash
|
| 35 |
+
git clone https://github.com/ALEX-nlp/CoDiQ.git
|
| 36 |
+
cd CoDiQ
|
| 37 |
+
pip install -r requirements.txt
|
| 38 |
+
```
|
| 39 |
+
|
| 40 |
+
### Inference: Generating Difficult Questions
|
| 41 |
+
|
| 42 |
+
You can leverage `CoDiQ-Gen-8B` to enhance the complexity of any seed problem. To begin, update the configuration in `tools_api.py`, `codiq_api.py`, `count_tokens.py` and then execute the following script:
|
| 43 |
+
```bash
|
| 44 |
+
bash run.sh
|
| 45 |
+
```
|
| 46 |
|
| 47 |
## 📖 Citation
|
| 48 |
|