Maximus200005/qwen35-0.8b-tldr-sft-ep1
035
Qwen3.5-0.8B — SFT on Reddit TLDR
Supervised fine-tuned Qwen/Qwen3.5-0.8B for TL;DR summarization of Reddit posts from **CarperAI/openai_summarize_tldr**.
This checkpoint is intended as a warm-start policy for Active Preference Learning (AL) + DPO experiments.
Model summary
Training data & filtering
- Dataset:
CarperAI/openai_summarize_tldr(train/valid) - Filters (aligned with
AL_Uncertainty/src/data_utils.py): - Prompt length 200–1000 characters (after
rstrip) - Exclude posts mentioning `r/offmychest` or `r/tifu`
- Supervision: human
label(reference TL;DR) as the assistant turn in a chat template.
After filtering, the training split size is ~20.6k examples.
Training procedure
Training was run with Hugging Face TRL
Key hyperparameters (sft/config/default.yaml):
How to use
Load model
from transformers import AutoModelForCausalLM, AutoTokenizer
import torch
model_id = "Maximus200005/qwen35-0.8b-tldr-sft-ep1"
tokenizer = AutoTokenizer.from_pretrained(model_id, trust_remote_code=True)
model = AutoModelForCausalLM.from_pretrained(
model_id,
trust_remote_code=True,
torch_dtype=torch.bfloat16,
device_map="auto",
use_safetensors=True,
)