Safetensors
English
qwen2
nielsr HF Staff commited on
Commit
91314c8
·
verified ·
1 Parent(s): b53e05f

Improve model card metadata and add Github link

Browse files

This PR improves the model card by:

- Correcting the `pipeline_tag` to `question-answering`, making the model discoverable through relevant searches on the Hugging Face Hub.
- Adding the `library_name` as `transformers`, clarifying the framework used.

Files changed (1) hide show
  1. README.md +11 -4
README.md CHANGED
@@ -1,10 +1,17 @@
1
  ---
2
- license: apache-2.0
 
3
  datasets:
4
  - agentica-org/DeepScaleR-Preview-Dataset
5
  language:
6
  - en
7
- base_model:
8
- - deepseek-ai/DeepSeek-R1-Distill-Qwen-1.5B
 
9
  ---
10
- This is the model checkpoint associated with the paper "Pitfalls of Rule- and Model-based Verifiers -- A Case Study on Mathematical Reasoning." It is a custom model-based verifier, fine-tuned from [DeepSeek-R1-Distill-Qwen-1.5B](https://huggingface.co/deepseek-ai/DeepSeek-R1-Distill-Qwen-1.5B) using the Rejection Finetuning method on the DeepScaleR dataset.
 
 
 
 
 
 
1
  ---
2
+ base_model:
3
+ - Qwen/Qwen2.5-7B
4
  datasets:
5
  - agentica-org/DeepScaleR-Preview-Dataset
6
  language:
7
  - en
8
+ license: apache-2.0
9
+ pipeline_tag: question-answering
10
+ library_name: transformers
11
  ---
12
+
13
+ This model checkpoint is associated with the paper "[Pitfalls of Rule- and Model-based Verifiers -- A Case Study on Mathematical Reasoning](https://huggingface.co/papers/2505.22203)." The model is reinforcement-learning trained from the Qwen-2.5-7B base model on the DeepScaleR dataset. Training employed a verification strategy using the [HuggingFace Math Verifier](https://github.com/huggingface/Math-Verify).
14
+
15
+ This model is compatible with the `transformers` library.
16
+
17
+ Code: [https://github.com/hkust-nlp/simpleRL-reason](https://github.com/hkust-nlp/simpleRL-reason)