Views
No views yet
| Field | Value |
|---|---|
| Epochs | 1 |
| Seed | 42 |
| cutoff_len | 4096 |
| packing | false |
| per_device_train_batch_size | 4 |
| gradient_accumulation_steps | 4 |
| effective_batch_size | 64 (4 x 4 x 4 GPUs) |
| learning_rate | 3e-5 |
| train_loss | 0.1572 |
| train_steps | 782 |
| finished_at | 2026-06-10 06:18 CST |
| runtime | ~53 min |
1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3repo_id = "modrill/qwen3-4b-nothink-s1-full-sft"
4tokenizer = AutoTokenizer.from_pretrained(repo_id, trust_remote_code=True)
5model = AutoModelForCausalLM.from_pretrained(
6 repo_id,
7 torch_dtype="auto",
8 device_map="auto",
9 trust_remote_code=True,
10)