dcostenco commited on
Commit
6cc070f
·
verified ·
1 Parent(s): db13206

Add model card for prism-coder-27b (100% BFCL)

Browse files
Files changed (1) hide show
  1. README.md +73 -0
README.md ADDED
@@ -0,0 +1,73 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ base_model: Qwen/Qwen3.5-27B
4
+ tags:
5
+ - prism-coder
6
+ - qwen3.5
7
+ - function-calling
8
+ - mcp
9
+ - tool-routing
10
+ - gguf
11
+ - qlora
12
+ - DeltaNet
13
+ language:
14
+ - en
15
+ - zh
16
+ ---
17
+
18
+ # Prism Coder 27B — Qwen3.5-27B Function-Calling Model
19
+
20
+ Fine-tuned from [Qwen3.5-27B](https://huggingface.co/Qwen/Qwen3.5-27B) for MCP tool-routing.
21
+ Part of the [Prism Coder](https://github.com/dcostenco/prism-coder) fleet.
22
+
23
+ ## Performance
24
+
25
+ | Metric | Value |
26
+ |--------|-------|
27
+ | **BFCL Accuracy** | **100% × 3 seeds** (345/345 test cases) |
28
+ | **Raw accuracy** | 100% (no L3 correction needed) |
29
+ | Tokens/sec (Q4_K_M, M5 48GB) | 28.5 |
30
+ | GGUF Q4_K_M size | 16 GB |
31
+ | Architecture | Hybrid DeltaNet (48/64 layers) + GQA (16/64) |
32
+ | Long context | O(n) via recurrent DeltaNet state |
33
+
34
+ ## Training
35
+
36
+ | Parameter | Value |
37
+ |-----------|-------|
38
+ | Base model | Qwen/Qwen3.5-27B |
39
+ | Method | QLoRA (4-bit NF4) |
40
+ | LoRA rank | 128, alpha=256 |
41
+ | Target modules | q_proj, k_proj, v_proj, o_proj, gate_proj, up_proj, down_proj |
42
+ | Layers | All 64 (including DeltaNet) |
43
+ | Training data | 24,798 examples (AAC 54%, tool-use 25%, safety 8%, abstention 8%) |
44
+ | Hardware | NVIDIA H100 PCIe 80GB |
45
+ | Duration | 12.5 hours |
46
+ | Final loss | 0.25 |
47
+ | Token accuracy | 93.2% |
48
+ | Cost | ~$29 |
49
+
50
+ ## Fleet
51
+
52
+ | Tag | Size | BFCL | Role |
53
+ |-----|------|------|------|
54
+ | `prism-coder:2b` | 2.3 GB | 99.1% | Mobile / iPhone |
55
+ | `prism-coder:4b` | 3.4 GB | 100% | Verifier |
56
+ | `prism-coder:9b` | 5.8 GB | 100% | Default router |
57
+ | **`prism-coder:27b`** | **16 GB** | **100%** | **Quality tier** |
58
+
59
+ ## Usage
60
+
61
+ ```bash
62
+ ollama pull dcostenco/prism-coder:27b
63
+ ollama run dcostenco/prism-coder:27b "Load context for the analytics project"
64
+ ```
65
+
66
+ Or via the Prism MCP server:
67
+ ```json
68
+ {"mcpServers": {"prism": {"command": "npx", "args": ["-y", "prism-mcp-server"]}}}
69
+ ```
70
+
71
+ ## License
72
+
73
+ Apache 2.0 (same as base model)