OpenOneRec commited on
Commit
8e08cbf
·
verified ·
1 Parent(s): e11197a

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +17 -12
README.md CHANGED
@@ -11,9 +11,10 @@ tags:
11
  - itemic-token
12
  - qwen3
13
  - pretraining
 
14
  ---
15
 
16
- # OneReason
17
 
18
  Reasoning Foundation Models for Generative Recommendation
19
 
@@ -35,23 +36,25 @@ The OneReason training stack contains three stages:
35
  - **Supervised Fine-Tuning (SFT):** teaches recommendation cognition with coarse-to-fine Chain-of-Thought (CoT) traces over user profiles, behavior histories, and itemic-token evidence.
36
  - **Reinforcement Learning (RL):** uses a specialize-then-unify recipe to improve thinking-mode recommendation while balancing performance across multiple recommendation domains.
37
 
38
- This repository currently releases the **OneReason-0.8B Pretrain checkpoint**. We will continue to release OneReason-0.8B SFT/RL checkpoints and the OneReason-8B series.
39
 
40
  ## News
41
 
 
42
  - **[2026.06]** OneReason-0.8B Pretrain checkpoint is released.
43
- - **Coming soon:** OneReason-0.8B SFT checkpoint.
44
- - **Coming soon:** OneReason-0.8B RL checkpoint.
45
- - **Coming soon:** OneReason-8B checkpoints.
46
 
47
  ## Model Zoo
48
 
49
  | Model | Stage | Parameters | Status | Description |
50
  |---|---:|---:|---|---|
51
  | OneReason-0.8B-Pretrain | Pre-training | 0.8B | Released | Foundation checkpoint after itemic-text alignment pre-training. Suitable for research, continued pre-training, and downstream SFT. |
 
52
  | OneReason-0.8B-SFT | SFT | 0.8B | Coming soon | Instruction-tuned checkpoint with recommendation perception, derivation, evolution, and recommendation supervision. |
53
  | OneReason-0.8B-RL | RL | 0.8B | Coming soon | Post-trained checkpoint optimized for recommendation-oriented reasoning. |
54
- | OneReason-8B | Pretrain/SFT/RL | 8B | Coming soon | Larger OneReason model family with stronger reasoning and recommendation performance. |
 
55
 
56
  ## Method Overview
57
 
@@ -109,9 +112,9 @@ OneReason is evaluated with **OneReason-Bench**, a reasoning-oriented recommenda
109
 
110
  ## Performance
111
 
112
- The released **OneReason-0.8B-Pretrain** checkpoint is the foundation checkpoint before SFT/RL. It is designed to provide strong itemic-token perception and a good initialization for downstream recommendation tuning.
113
 
114
- The tables below report the full OneReason-8B system results from the technical report. We will update this model card with checkpoint-specific numbers as the OneReason-0.8B SFT/RL and OneReason-8B checkpoints become available.
115
 
116
  <p align="center">
117
  <img src="assert/rader.png" alt="OneReason performance overview and thinking-mode gains" width="95%">
@@ -177,7 +180,7 @@ Load the model:
177
  ```python
178
  from transformers import AutoModelForCausalLM, AutoTokenizer
179
 
180
- model_name = "OpenOneRec/OneReason-0.8B-Pretrain" # or the local path to this repository
181
 
182
  tokenizer = AutoTokenizer.from_pretrained(model_name, trust_remote_code=True)
183
  model = AutoModelForCausalLM.from_pretrained(
@@ -299,12 +302,13 @@ Expected response (example output):
299
 
300
  ## Intended Use
301
 
302
- The OneReason-0.8B Pretrain checkpoint is intended for:
303
 
304
- - Research on generative recommendation and recommendation foundation models.
305
  - Continued pre-training or SFT on new recommendation domains.
306
  - Itemic-token perception studies, including item understanding and itemic-token grounding.
307
  - Building downstream recommendation models that combine user profiles, behavior histories, and itemic-token representations.
 
308
 
309
  For best recommendation reasoning performance, we recommend using future SFT/RL checkpoints once released, or fine-tuning this pretrain checkpoint on task-specific supervised data.
310
 
@@ -314,7 +318,8 @@ For best recommendation reasoning performance, we recommend using future SFT/RL
314
  - Direct recommendation quality depends on the itemic tokenizer, item catalog, user history format, and decoding strategy.
315
  - Generated itemic tokens must be validated against the target item catalog before being used as item IDs.
316
  - The model may generate invalid, stale, or unsupported itemic-token sequences if the prompt distribution differs significantly from training data.
317
- - The checkpoint is released for research and should not be used for high-stakes personalization without careful evaluation, filtering, and privacy review.
 
318
 
319
  ## Citation
320
 
 
11
  - itemic-token
12
  - qwen3
13
  - pretraining
14
+ - competition
15
  ---
16
 
17
+ # OneReason-8B-Pretrain (Competition)
18
 
19
  Reasoning Foundation Models for Generative Recommendation
20
 
 
36
  - **Supervised Fine-Tuning (SFT):** teaches recommendation cognition with coarse-to-fine Chain-of-Thought (CoT) traces over user profiles, behavior histories, and itemic-token evidence.
37
  - **Reinforcement Learning (RL):** uses a specialize-then-unify recipe to improve thinking-mode recommendation while balancing performance across multiple recommendation domains.
38
 
39
+ This repository releases the **OneReason-8B-Pretrain (Competition)** checkpoint the 8B foundation checkpoint after itemic-text alignment pre-training, prepared for the OneReason competition track. The 0.8B pretrain checkpoint is released in a sibling repository.
40
 
41
  ## News
42
 
43
+ - **[2026.07]** OneReason-8B-Pretrain (Competition) checkpoint is released.
44
  - **[2026.06]** OneReason-0.8B Pretrain checkpoint is released.
45
+ - **Coming soon:** OneReason-0.8B / 8B SFT checkpoints.
46
+ - **Coming soon:** OneReason-0.8B / 8B RL checkpoints.
 
47
 
48
  ## Model Zoo
49
 
50
  | Model | Stage | Parameters | Status | Description |
51
  |---|---:|---:|---|---|
52
  | OneReason-0.8B-Pretrain | Pre-training | 0.8B | Released | Foundation checkpoint after itemic-text alignment pre-training. Suitable for research, continued pre-training, and downstream SFT. |
53
+ | OneReason-8B-Pretrain (Competition) | Pre-training | 8B | Released | Larger foundation checkpoint with stronger itemic-token perception and broader recommendation coverage. This is the competition release. |
54
  | OneReason-0.8B-SFT | SFT | 0.8B | Coming soon | Instruction-tuned checkpoint with recommendation perception, derivation, evolution, and recommendation supervision. |
55
  | OneReason-0.8B-RL | RL | 0.8B | Coming soon | Post-trained checkpoint optimized for recommendation-oriented reasoning. |
56
+ | OneReason-8B-SFT | SFT | 8B | Coming soon | Instruction-tuned 8B checkpoint. |
57
+ | OneReason-8B-RL | RL | 8B | Coming soon | Post-trained 8B checkpoint optimized for recommendation-oriented reasoning. |
58
 
59
  ## Method Overview
60
 
 
112
 
113
  ## Performance
114
 
115
+ The released **OneReason-8B-Pretrain (Competition)** checkpoint is the 8B foundation checkpoint before SFT/RL. It provides stronger itemic-token perception and broader recommendation coverage than the 0.8B release, and serves as a strong initialization for downstream recommendation tuning.
116
 
117
+ The tables below report the full OneReason-8B system results from the technical report. The pretrain checkpoint itself is evaluated on R0 perception and grounding tasks; the SFT/RL rows are included to show the full system performance that this pretrain checkpoint enables.
118
 
119
  <p align="center">
120
  <img src="assert/rader.png" alt="OneReason performance overview and thinking-mode gains" width="95%">
 
180
  ```python
181
  from transformers import AutoModelForCausalLM, AutoTokenizer
182
 
183
+ model_name = "OpenOneRec/OneReason-8B-pretrain-competition" # or the local path to this repository
184
 
185
  tokenizer = AutoTokenizer.from_pretrained(model_name, trust_remote_code=True)
186
  model = AutoModelForCausalLM.from_pretrained(
 
302
 
303
  ## Intended Use
304
 
305
+ The OneReason-8B-Pretrain (Competition) checkpoint is intended for:
306
 
307
+ - Research on generative recommendation and recommendation foundation models at the 8B scale.
308
  - Continued pre-training or SFT on new recommendation domains.
309
  - Itemic-token perception studies, including item understanding and itemic-token grounding.
310
  - Building downstream recommendation models that combine user profiles, behavior histories, and itemic-token representations.
311
+ - Competition baselines that require a strong, open recommendation foundation checkpoint.
312
 
313
  For best recommendation reasoning performance, we recommend using future SFT/RL checkpoints once released, or fine-tuning this pretrain checkpoint on task-specific supervised data.
314
 
 
318
  - Direct recommendation quality depends on the itemic tokenizer, item catalog, user history format, and decoding strategy.
319
  - Generated itemic tokens must be validated against the target item catalog before being used as item IDs.
320
  - The model may generate invalid, stale, or unsupported itemic-token sequences if the prompt distribution differs significantly from training data.
321
+ - The 8B checkpoint requires more memory and compute than the 0.8B release; make sure your environment has sufficient GPU resources before loading.
322
+ - The checkpoint is released for research and competition use, and should not be used for high-stakes personalization without careful evaluation, filtering, and privacy review.
323
 
324
  ## Citation
325