Update README.md
Browse files
README.md
CHANGED
@@ -19,8 +19,60 @@ base_model:
|
|
19 |
tags:
|
20 |
- General-Reasoner-7B
|
21 |
---
|
22 |
-
This is the model we trained with https://github.com/TIGER-AI-Lab/General-Reasoner
|
23 |
|
24 |
-
[Paper](https://arxiv.org/abs/2505.14652)
|
25 |
|
26 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
tags:
|
20 |
- General-Reasoner-7B
|
21 |
---
|
|
|
22 |
|
|
|
23 |
|
24 |
+
# General-Reasoner: Advancing LLM Reasoning Across All Domains
|
25 |
+
|
26 |
+
<p align="center">
|
27 |
+
<a href="https://github.com/TIGER-AI-Lab/General-Reasoner" target="_blank">💻 Code</a> |
|
28 |
+
<a href="https://arxiv.org/abs/2505.14652" target="_blank">📄 Paper</a> |
|
29 |
+
<a href="https://huggingface.co/datasets/TIGER-Lab/WebInstruct-verified" target="_blank">📊 Dataset</a> |
|
30 |
+
<a href="https://huggingface.co/collections/TIGER-Lab/general-reasoner-67fe9386e43e046489eac013" target="_blank">🤗 Model</a> |
|
31 |
+
<a href="https://tiger-ai-lab.github.io/General-Reasoner/" target="_blank">🌐 Project Page</a>
|
32 |
+
</p>
|
33 |
+
|
34 |
+
|
35 |
+
|
36 |
+
## Overview
|
37 |
+
|
38 |
+
<p align="center">
|
39 |
+
<img src="https://tiger-ai-lab.github.io/General-Reasoner/static/images/teaser.png" alt="General-Reasoner Teaser" width="650"/>
|
40 |
+
</p>
|
41 |
+
<p align="center" style="font-style: italic; font-size: 0.95rem;">
|
42 |
+
<em>
|
43 |
+
Figure: Effectiveness of <strong>General-Reasoner</strong> trained with diverse verifiable reasoning questions using model-based verifier compared to baseline methods on various reasoning tasks.
|
44 |
+
</em>
|
45 |
+
</p>
|
46 |
+
|
47 |
+
**General-Reasoner** is a training paradigm for large language models (LLMs), designed to robustly enhance reasoning abilities across diverse domains—not just mathematics and coding, but also physics, chemistry, finance, humanities, and more.
|
48 |
+
|
49 |
+
**Key features:**
|
50 |
+
- **Zero RL Training:** Direct reinforcement learning from base LLMs, bypassing intermediate supervised stages.
|
51 |
+
- **Diverse Reasoning Data:** 230K+ high-quality, verifiable questions sourced from the web and filtered for answer verifiability across disciplines.
|
52 |
+
- **Model-Based Verifier:** Compact 1.5B generative verifier model for context-aware, chain-of-thought answer validation, outperforming traditional rule-based methods.
|
53 |
+
|
54 |
+
**This specific model is the General-Reasoner variant trained based on [Qwen2.5-7B-Base](https://huggingface.co/Qwen/Qwen2.5-7B).**
|
55 |
+
|
56 |
+
|
57 |
+
## Main Results
|
58 |
+
General-Reasoner outperforms base and supervised models on a variety of reasoning benchmarks, demonstrating robust generalization across domains:
|
59 |
+
|
60 |
+
<p align="center">
|
61 |
+
<a href="https://github.com/TIGER-AI-Lab/General-Reasoner/raw/refs/heads/gh-pages/static/images/results_general.png" target="_blank">
|
62 |
+
<img src="https://github.com/TIGER-AI-Lab/General-Reasoner/raw/refs/heads/gh-pages/static/images/results_general.png" alt="Main Results" width="600">
|
63 |
+
</a>
|
64 |
+
</p>
|
65 |
+
|
66 |
+
## Citation
|
67 |
+
|
68 |
+
If you feel our work is helpful, please cite:
|
69 |
+
|
70 |
+
```bibtex
|
71 |
+
@article{general-reasoner,
|
72 |
+
title={{G}eneral-{R}easoner: Advancing LLM Reasoning Across All Domains},
|
73 |
+
author={Xueguang Ma and Qian Liu and Dongfu Jiang and Ge Zhang and Zejun Ma and Wenhu Chen},
|
74 |
+
year={2025},
|
75 |
+
journal={arXiv:2505.14652},
|
76 |
+
url={https://arxiv.org/abs/2505.14652}
|
77 |
+
}
|
78 |
+
```
|