mach-kernel commited on
Commit
ec440de
·
verified ·
1 Parent(s): 9216a4e

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +58 -0
README.md ADDED
@@ -0,0 +1,58 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ base_model: Qwen/Qwen3.5-35B-A3B-Base
4
+ tags:
5
+ - gguf
6
+ - fine-tuned
7
+ - tool-calling
8
+ - mcp
9
+ - dbt
10
+ - q4_k_m
11
+ ---
12
+
13
+ # ecu-pilot (GGUF Q4_K_M)
14
+
15
+ Quantized GGUF of [ecu-pilot-fp16](https://huggingface.co/mach-kernel/ecu-pilot-fp16) — a fine-tuned Qwen3.5-35B-A3B for structured tool calling against project metadata via MCP.
16
+
17
+ ## Quantization
18
+
19
+ | | |
20
+ |---|---|
21
+ | **Source** | [mach-kernel/ecu-pilot-fp16](https://huggingface.co/mach-kernel/ecu-pilot-fp16) |
22
+ | **Method** | Q4_K_M via llama.cpp |
23
+ | **Size** | ~20 GB |
24
+ | **Architecture** | Mixture of Experts (35B total, 3B active per token) |
25
+
26
+ ## Usage
27
+
28
+ ### Ollama
29
+
30
+ ```bash
31
+ # Create a Modelfile
32
+ echo 'FROM ./ecu-pilot-q4_k_m.gguf
33
+ PARAMETER temperature 0.2
34
+ PARAMETER num_ctx 8192
35
+ PARAMETER stop <|im_end|>' > Modelfile
36
+
37
+ ollama create ecu-pilot -f Modelfile
38
+ ollama run ecu-pilot
39
+ ```
40
+
41
+ ### llama.cpp
42
+
43
+ ```bash
44
+ llama-cli -m ecu-pilot-q4_k_m.gguf -ngl 99 -cnv
45
+ ```
46
+
47
+ ## All variants
48
+
49
+ | Format | Repository | Size |
50
+ |--------|-----------|------|
51
+ | FP16 | [mach-kernel/ecu-pilot-fp16](https://huggingface.co/mach-kernel/ecu-pilot-fp16) | ~67 GB |
52
+ | GGUF Q4_K_M (this repo) | [mach-kernel/ecu-pilot-q4km](https://huggingface.co/mach-kernel/ecu-pilot-q4km) | ~20 GB |
53
+ | GGUF Q8_0 | [mach-kernel/ecu-pilot-q8_0](https://huggingface.co/mach-kernel/ecu-pilot-q8_0) | ~35 GB |
54
+ | LoRA adapter | [mach-kernel/ecu-pilot-fp16-lora](https://huggingface.co/mach-kernel/ecu-pilot-fp16-lora) | ~4 GB |
55
+
56
+ ## Why "ecu"
57
+
58
+ No reason. Just liked how it sounded. Definitely not a Caesar cipher of anything. Don't look into it.