--- license: apache-2.0 task_categories: - text-generation language: - zh tags: - recommendation - kuaishou - onereason - sft - llm-rec size_categories: - 10K` block, keep 1 filled-think and convert the rest to `/no_think` variants (empty `` + direct SID output) - Result: 6,378 filled-think rows + 12,273 no-think direct-SID rows 6. `item`, `user_interest`, `common_sense` buckets: think traces preserved as-is 7. Load `common_sense` from `ceval` + `eval_log` sources 8. Shuffle all buckets together (seed=42) Reproducing the dedup step (pseudocode): ```python from collections import defaultdict import re THINK_RE = re.compile(r'(.*?)', re.DOTALL) def think_of(response: str) -> str: m = THINK_RE.search(response) return m.group(1).strip() if m else '' def dedupe_identical_think_per_prompt(rows): by_prompt = defaultdict(list) for r in rows: by_prompt[(r.system, r.user)].append(r) out = [] for group in by_prompt.values(): thinks = {think_of(r.assistant) for r in group} if len(thinks) == 1 and next(iter(thinks)): out.append(group[0]) for r in group[1:]: out.append(convert_to_no_think(r)) else: out.extend(group) return out ``` ## LoRA hyperparameters ```yaml method: LoRA lora_rank: 32 lora_alpha: 32 lora_dropout: 0.05 learning_rate: 2.0e-4 weight_decay: 0.001 warmup_ratio: 0.03 lr_scheduler: cosine per_device_batch_size: 1 gradient_accumulation_steps: 4 sequence_length: 32768 packing: true bf16: true enable_thinking: false num_train_epochs: 1 save_every_steps: 256 ``` Same values in `hyperparameters.json` for programmatic use. ## Eval scores | Task | Score | |---|---| | **Overall** | **0.9107** | | `challenge_itemic_pattern_grounding` | 0.2146 | | `challenge_evolution_action_select` | 0.0678 | | `challenge_evolution_topic_gen` | 0.0390 | | `challenge_recommendation_video` | 0.0672 | | `challenge_recommendation_product` | 0.1190 | | `challenge_recommendation_ad` | 0.1498 | | `challenge_recommendation_live` | 0.1098 | | `challenge_common_sense` | 0.1435 | ## How to reproduce 1. Download `train.jsonl` 2. Upload to the Kuaishou LLM-Rec competition platform SFT UI 3. Set base model: `OpenOneRec/OneReason-0.8B-pretrain-competition` 4. Apply hyperparameters above 5. Train 1 epoch 6. Submit for eval ## License Apache 2.0.