Views
No views yet
| Parameter | Value |
|---|---|
| Base Model | Qwen/Qwen3-8B |
| LoRA Rank | 64 |
| LoRA Alpha | 128 |
| Learning Rate | 1.72e-04 |
| Epochs | 4 |
| Validation Loss | 0.1947 |
| Training Samples | 35,976 |
| Dataset | GLM-4.7-flash SFT traces (successful traces only) |
| Context Length | 16,384 tokens |
| Quantization | 4-bit (QLoRA) |
| Benchmark | Score |
|---|---|
| SimpleQA (200) | 11.0% accuracy |
| GAIA (165) | 9.1% accuracy |
| HLE (200) | 6.0% accuracy |
| DeepResearch (100) | 0.2206 score |
1from peft import AutoPeftModelForCausalLM
2from transformers import AutoTokenizer
3
4model = AutoPeftModelForCausalLM.from_pretrained(
5 "akenginorhun/qwen3-8b-orchestrator-lora-successful-only",
6 device_map="auto",
7)
8tokenizer = AutoTokenizer.from_pretrained(
9 "akenginorhun/qwen3-8b-orchestrator-lora-successful-only"
10)4j1os87c