Views
No views yet
Qwen3-8B-Base. Trained with the slime RL framework.torch_dist checkpoint iter_0000090 to
HuggingFace safetensors format (BF16). The tokenizer and config are inherited from
Qwen3-8B-Base.Qwen3ForCausalLM (36 layers, hidden 4096, 32 heads / 8 KV heads, vocab 151936)1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3model_id = "willhx/Qwen3-8B-Base-Math-SeaSFT-Search-EOPD-Tau-iter90"
4tok = AutoTokenizer.from_pretrained(model_id)
5model = AutoModelForCausalLM.from_pretrained(model_id, torch_dtype="bfloat16", device_map="auto")