Views
No views yet
| Base model | Qwen3.5-35B-A3B-Base |
| Architecture | Mixture of Experts (35B total, 3B active per token) |
| Fine-tuning method | bf16 LoRA (r=16, alpha=16) |
| Training stages | Stage 1: tool mechanics (1 epoch, 1,206 examples) / Stage 2: structured planning (2 epochs, 290 examples) |
| Hardware | NVIDIA H200 141GB, ~1 hour total |
| Training data | 1,206 ChatML examples with real tool responses from indexed project metadata |
1from transformers import AutoModelForCausalLM, AutoTokenizer
2import torch
3
4model = AutoModelForCausalLM.from_pretrained(
5 "mach-kernel/ecu-pilot-fp16",
6 torch_dtype=torch.bfloat16,
7 device_map="auto",
8)
9tokenizer = AutoTokenizer.from_pretrained("mach-kernel/ecu-pilot-fp16")| Format | Repository |
|---|---|
| FP16 (this repo) | mach-kernel/ecu-pilot-fp16 |
| LoRA adapter only | mach-kernel/ecu-pilot-fp16-lora |
| GGUF Q4_K_M | mach-kernel/ecu-pilot-q4km |
| GGUF Q8_0 | mach-kernel/ecu-pilot-q8_0 |
<think> blocks before acting.