Improve pipeline tag and add link to code
Browse filesThis PR improves the model card by changing the `pipeline_tag` to `text-generation` and adding a link to the Github repository.
README.md
CHANGED
|
@@ -1,20 +1,22 @@
|
|
| 1 |
---
|
| 2 |
-
|
|
|
|
| 3 |
datasets:
|
| 4 |
- RuleReasoner/rule-reasoning
|
| 5 |
language:
|
| 6 |
- en
|
|
|
|
|
|
|
| 7 |
metrics:
|
| 8 |
- accuracy
|
| 9 |
-
|
| 10 |
-
- Qwen/Qwen3-4B-Base
|
| 11 |
-
new_version: RuleReasoner/RuleReasoner-4B
|
| 12 |
-
pipeline_tag: question-answering
|
| 13 |
-
library_name: transformers
|
| 14 |
tags:
|
| 15 |
- rule-based reasoning
|
|
|
|
| 16 |
---
|
|
|
|
| 17 |
If you use the model in your research, please cite the original papers as below.
|
|
|
|
| 18 |
```latex
|
| 19 |
@article{liu2025rulereasoner,
|
| 20 |
title={RuleReasoner: Reinforced Rule-based Reasoning via Domain-aware Dynamic Sampling},
|
|
@@ -25,4 +27,6 @@ If you use the model in your research, please cite the original papers as below.
|
|
| 25 |
primaryClass={cs.CL},
|
| 26 |
url={https://arxiv.org/abs/2506.08672},
|
| 27 |
}
|
| 28 |
-
```
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
base_model:
|
| 3 |
+
- Qwen/Qwen3-4B-Base
|
| 4 |
datasets:
|
| 5 |
- RuleReasoner/rule-reasoning
|
| 6 |
language:
|
| 7 |
- en
|
| 8 |
+
library_name: transformers
|
| 9 |
+
license: mit
|
| 10 |
metrics:
|
| 11 |
- accuracy
|
| 12 |
+
pipeline_tag: text-generation
|
|
|
|
|
|
|
|
|
|
|
|
|
| 13 |
tags:
|
| 14 |
- rule-based reasoning
|
| 15 |
+
new_version: RuleReasoner/RuleReasoner-4B
|
| 16 |
---
|
| 17 |
+
|
| 18 |
If you use the model in your research, please cite the original papers as below.
|
| 19 |
+
|
| 20 |
```latex
|
| 21 |
@article{liu2025rulereasoner,
|
| 22 |
title={RuleReasoner: Reinforced Rule-based Reasoning via Domain-aware Dynamic Sampling},
|
|
|
|
| 27 |
primaryClass={cs.CL},
|
| 28 |
url={https://arxiv.org/abs/2506.08672},
|
| 29 |
}
|
| 30 |
+
```
|
| 31 |
+
|
| 32 |
+
Code: https://github.com/bigai-nlco/RuleReasoner
|