Views
No views yet
| Parameter | Value |
|---|---|
| Base Model | Qwen/Qwen3-8B |
| LoRA Rank | 128 |
| LoRA Alpha | 256 |
| Learning Rate | 2.38e-05 |
| Epochs | 1 |
| Validation Loss | 0.2352 |
| Training Samples | 52,204 |
| Dataset | GLM-4.7-flash SFT traces (includes failed traces) |
| Context Length | 16,384 tokens |
| Quantization | 4-bit (QLoRA) |
| Benchmark | Score |
|---|---|
| SimpleQA (200) | 30.0% accuracy |
| GAIA (165) | 10.9% accuracy |
| HLE (180) | 6.1% accuracy |
| DeepResearch (100) | 0.2340 score |
1from peft import AutoPeftModelForCausalLM
2from transformers import AutoTokenizer
3
4model = AutoPeftModelForCausalLM.from_pretrained(
5 "akenginorhun/qwen3-8b-orchestrator-lora-with-failures",
6 device_map="auto",
7)
8tokenizer = AutoTokenizer.from_pretrained(
9 "akenginorhun/qwen3-8b-orchestrator-lora-with-failures"
10)5unzmw85