Views
No views yet
| Parameter | Value |
|---|---|
| Base model | Qwen/Qwen3.6-35B-A3B |
| Adapter rank | 64 |
| Adapter alpha | 128 |
| Target modules | q_proj, k_proj, v_proj, o_proj (attention only) |
| Training data | 20K tool-use trajectories |
| Training steps | 1,187 (1 epoch) |
| Final loss | ~0.65 |
| Precision | BF16 (base quantized to NF4 via QLoRA) |
| File | Description |
|---|---|
adapter_model.safetensors | LoRA weights (55 MB) |
adapter_config.json | PEFT LoRA configuration |
checkpoint-1187/ | Full trainer checkpoint with optimizer/scheduler states |
config.json | Model configuration |
tokenizer.json / tokenizer_config.json | Tokenizer files |
1from transformers import AutoModelForCausalLM, AutoTokenizer
2from peft import PeftModel
3
4base_model = AutoModelForCausalLM.from_pretrained(
5 "Qwen/Qwen3.6-35B-A3B",
6 torch_dtype="auto",
7 device_map="auto",
8 trust_remote_code=True,
9)
10
11model = PeftModel.from_pretrained(
12 base_model,
13 "jacobeen06/Genesis-1.0-SFT-adapter",
14)
15
16tokenizer = AutoTokenizer.from_pretrained("Qwen/Qwen3.6-35B-A3B")