Question Answering
Safetensors
qwen3
MrLight commited on
Commit
31aa69a
verified
1 Parent(s): 0be9145

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +64 -2
README.md CHANGED
@@ -1,2 +1,64 @@
1
- [Paper](https://arxiv.org/abs/2505.14652)
2
- [Project Page](https://tiger-ai-lab.github.io/General-Reasoner/)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ datasets:
4
+ - TIGER-Lab/WebInstruct-verified
5
+ base_model:
6
+ - Qwen/Qwen3-14B-Base
7
+ pipeline_tag: question-answering
8
+ ---
9
+
10
+ # General-Reasoner: Advancing LLM Reasoning Across All Domains
11
+
12
+ <p align="center">
13
+ <a href="https://github.com/TIGER-AI-Lab/General-Reasoner" target="_blank">馃捇 Code</a> |
14
+ <a href="https://arxiv.org/abs/2505.14652" target="_blank">馃搫 Paper</a> |
15
+ <a href="https://huggingface.co/datasets/TIGER-Lab/WebInstruct-verified" target="_blank">馃搳 Dataset</a> |
16
+ <a href="https://huggingface.co/collections/TIGER-Lab/general-reasoner-67fe9386e43e046489eac013" target="_blank">馃 Model</a> |
17
+ <a href="https://tiger-ai-lab.github.io/General-Reasoner/" target="_blank">馃寪 Project Page</a>
18
+ </p>
19
+
20
+
21
+
22
+ ## Overview
23
+
24
+ <p align="center">
25
+ <img src="https://tiger-ai-lab.github.io/General-Reasoner/static/images/teaser.png" alt="General-Reasoner Teaser" width="650"/>
26
+ </p>
27
+ <p align="center" style="font-style: italic; font-size: 0.95rem;">
28
+ <em>
29
+ 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.
30
+ </em>
31
+ </p>
32
+
33
+ **General-Reasoner** is a training paradigm for large language models (LLMs), designed to robustly enhance reasoning abilities across diverse domains鈥攏ot just mathematics and coding, but also physics, chemistry, finance, humanities, and more.
34
+
35
+ **Key features:**
36
+ - **Zero RL Training:** Direct reinforcement learning from base LLMs, bypassing intermediate supervised stages.
37
+ - **Diverse Reasoning Data:** 230K+ high-quality, verifiable questions sourced from the web and filtered for answer verifiability across disciplines.
38
+ - **Model-Based Verifier:** Compact 1.5B generative verifier model for context-aware, chain-of-thought answer validation, outperforming traditional rule-based methods.
39
+
40
+ **This specific model is the General-Reasoner variant trained based on [Qwen3-14B-Base](https://huggingface.co/Qwen/Qwen3-4B-Base).**
41
+
42
+
43
+ ## Main Results
44
+ General-Reasoner outperforms base and supervised models on a variety of reasoning benchmarks, demonstrating robust generalization across domains:
45
+
46
+ <p align="center">
47
+ <a href="https://github.com/TIGER-AI-Lab/General-Reasoner/raw/refs/heads/gh-pages/static/images/results_general.png" target="_blank">
48
+ <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">
49
+ </a>
50
+ </p>
51
+
52
+ ## Citation
53
+
54
+ If you feel our work is helpful, please cite:
55
+
56
+ ```bibtex
57
+ @article{general-reasoner,
58
+ title={{G}eneral-{R}easoner: Advancing LLM Reasoning Across All Domains},
59
+ author={Xueguang Ma and Qian Liu and Dongfu Jiang and Ge Zhang and Zejun Ma and Wenhu Chen},
60
+ year={2025},
61
+ journal={arXiv:2505.14652},
62
+ url={https://arxiv.org/abs/2505.14652}
63
+ }
64
+ ```