Views
No views yet
simplex-ai-inc/LiteResearcher-4B model.If you are looking for the final RL model, please usesimplex-ai-inc/LiteResearcher-4B. If you want to reproduce the RL training from scratch, this is the checkpoint you need.
Qwen/Qwen3-4B-Thinking-2507Qwen3ForCausalLM (36 layers, hidden 2560, 32 heads, GQA 8 KV heads)bfloat16| Item | Value |
|---|---|
| Stage | SFT (cold-start before RL) |
| Base model | Qwen/Qwen3-4B-Thinking-2507 |
| Dataset | simplex-ai-inc/LiteResearcher-Data (~68.2k SFT trajectories) |
| Max sequence length | 64K (cutoff_len=65536) |
| Global batch size | 128 (per-device bs 2 × grad-accum 8 × 8 GPUs) |
| Epochs | 1 |
| Optimizer steps | 533 |
| Learning rate | 2.0e-5, cosine, 10% warmup |
| Final train loss | ≈ 0.447 (starting loss ≈ 1.19) |
think → search → visit → answer
loop and the strict <answer>...</answer> output contract used by the RL environment.
Because the base is the Thinking-2507 variant, the model preserves long
chain-of-thought behavior inside <think>...</think> blocks, which is what the
downstream RL curriculum builds on.1# In the LiteResearcher training scripts (Training/ folder of the repo)
2export MODEL_PATH=$(hf download simplex-ai-inc/LiteResearcher-4B-SFT \
3 --local-dir ./literesearcher_sft)1from transformers import AutoModelForCausalLM, AutoTokenizer
2import torch
3
4model_id = "simplex-ai-inc/LiteResearcher-4B-SFT"
5tok = AutoTokenizer.from_pretrained(model_id)
6model = AutoModelForCausalLM.from_pretrained(
7 model_id, torch_dtype=torch.bfloat16, device_map="auto"
8)Inference/ in the repo).