nielsr HF Staff commited on
Commit
a74791e
·
verified ·
1 Parent(s): bb81701

Improve model card metadata and add paper/code links

Browse files

Hi! I'm Niels from the community science team at Hugging Face.

I've opened this PR to enhance the model card metadata and content. Specifically:
- Added `library_name: transformers` to ensure compatibility with automated code snippets and integration on the Hub.
- Added links to the associated paper: [Learning to Reason without External Rewards](https://huggingface.co/papers/2505.19590).
- Added a link to the official GitHub repository: [sunblaze-ucb/Intuitor](https://github.com/sunblaze-ucb/Intuitor).
- Linked the base model in the description for easier navigation.

Files changed (1) hide show
  1. README.md +11 -4
README.md CHANGED
@@ -1,21 +1,28 @@
1
  ---
2
  base_model:
3
  - allenai/OLMo-2-1124-7B-SFT
4
- license: apache-2.0
5
  datasets:
6
  - math
 
 
 
7
  metrics:
8
  - accuracy
9
  pipeline_tag: text-generation
10
- language:
11
- - en
12
  ---
13
 
14
  # OLMo-2-7B-SFT-GRPO-MATH-1EPOCH-SYSP
15
 
16
  **Description:**
17
 
18
- A GRPO-fine-tuned version of Allenai/OLMo-2-1124-7B-SFT trained on the MATH dataset with system prompt.
 
 
 
 
 
 
19
 
20
  ---
21
 
 
1
  ---
2
  base_model:
3
  - allenai/OLMo-2-1124-7B-SFT
 
4
  datasets:
5
  - math
6
+ language:
7
+ - en
8
+ license: apache-2.0
9
  metrics:
10
  - accuracy
11
  pipeline_tag: text-generation
12
+ library_name: transformers
 
13
  ---
14
 
15
  # OLMo-2-7B-SFT-GRPO-MATH-1EPOCH-SYSP
16
 
17
  **Description:**
18
 
19
+ A GRPO-fine-tuned version of [allenai/OLMo-2-1124-7B-SFT](https://huggingface.co/allenai/OLMo-2-1124-7B-SFT) trained on the MATH dataset with a system prompt.
20
+
21
+ This model was developed as part of the research presented in the paper [Learning to Reason without External Rewards](https://huggingface.co/papers/2505.19590). It utilizes the **Intuitor** method, an instantiation of Reinforcement Learning from Internal Feedback (RLIF), which enables models to learn from intrinsic signals like self-certainty without requiring external rewards or labeled gold solutions.
22
+
23
+ ## Resources
24
+ - **Paper:** [Learning to Reason without External Rewards](https://huggingface.co/papers/2505.19590)
25
+ - **Repository:** [sunblaze-ucb/Intuitor](https://github.com/sunblaze-ucb/Intuitor)
26
 
27
  ---
28