Views
No views yet
Note: Training was conducted with a 4-bit loading setup (QLoRA-style). Some training artifacts may reference an Unsloth 4-bit base path, but the canonical base model ID for this run is shown above.
SFT_MASK_COT=1)after_markerOutput:, OUTPUT:, Final:, Answer:, Result:, Response:meta.json):Qwen/Qwen3-4B-Instruct-2507u-10bei/structured_data_with_cot_dataset_512_v41from transformers import AutoModelForCausalLM, AutoTokenizer
2from peft import PeftModel
3import torch
4
5base = "Qwen/Qwen3-4B-Instruct-2507"
6adapter = "your_id/qwen3-4b-sft-v0-cotv4-lr2e5-ep2"
7
8tokenizer = AutoTokenizer.from_pretrained(base)
9model = AutoModelForCausalLM.from_pretrained(
10 base,
11 torch_dtype=torch.bfloat16, # matches USE_BF16=true
12 device_map="auto",
13)
14model = PeftModel.from_pretrained(model, adapter)