the-clanker-lover commited on
Commit
c117532
·
verified ·
1 Parent(s): 5ffe264

Final README with benchmark summary

Browse files
Files changed (1) hide show
  1. README.md +36 -19
README.md CHANGED
@@ -1,50 +1,67 @@
1
  ---
2
  license: apache-2.0
3
  language:
4
- - en
5
- - code
6
- base_model:
7
- - Qwen/Qwen2.5-Coder-14B-Instruct
8
  library_name: gguf
9
  pipeline_tag: text-generation
10
  tags:
11
- - code
12
- - ada
13
- - spark
14
- - gguf
15
- - quantized
 
 
16
  ---
17
 
18
- # Steelman-14B-Ada v0.1 — GGUF
19
 
20
- Q4_K_M quantized version of [Steelman-14B-Ada v0.1](https://huggingface.co/the-clanker-lover/steelman-14b-ada-v0.1), a QLoRA fine-tune of Qwen2.5-Coder-14B-Instruct specialized for Ada 2022 and SPARK code generation.
21
 
22
- This is a merged, quantized model ready for local inference. Fits in 12GB of VRAM.
23
 
24
- ## Quickstart (Ollama)
 
 
25
 
26
  ```bash
27
  ollama run hf.co/the-clanker-lover/steelman-14b-ada-v0.1-GGUF
28
  ```
29
 
30
- ### Example prompt
31
 
32
  ```
33
- Write an Ada 2022 function with SPARK contracts that performs binary search on a sorted array of integers. Include preconditions, postconditions, and a loop invariant.
34
  ```
35
 
36
- ### System prompt (recommended)
37
 
38
  ```
39
- You are an expert Ada 2022 and SPARK programmer.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
40
  ```
41
 
42
  ## Details
43
 
44
  - **Quantization:** Q4_K_M (4-bit, k-quant medium)
45
  - **Base model:** Qwen2.5-Coder-14B-Instruct
46
- - **Fine-tune:** R5 — 68.6% clean compile rate on 923 held-out Ada/SPARK prompts
47
- - **Full details:** [steelman-14b-ada-v0.1](https://huggingface.co/the-clanker-lover/steelman-14b-ada-v0.1) (adapter repo with eval results, training methodology, dataset breakdown)
48
 
49
  ## License
50
 
 
1
  ---
2
  license: apache-2.0
3
  language:
4
+ - ada
5
+ base_model: Qwen/Qwen2.5-Coder-14B-Instruct
 
 
6
  library_name: gguf
7
  pipeline_tag: text-generation
8
  tags:
9
+ - ada
10
+ - ada2022
11
+ - spark
12
+ - gguf
13
+ - quantized
14
+ - code-generation
15
+ - safety-critical
16
  ---
17
 
18
+ # Steelman-14B-Ada — GGUF
19
 
20
+ Q4_K_M quantized version of [Steelman-14B-Ada](https://huggingface.co/the-clanker-lover/steelman-14b-ada-v0.1). A 14B model fine-tuned for Ada 2022 and SPARK code generation. Fits in 12GB of VRAM.
21
 
22
+ **68.6% clean compile rate** on 1,000 Ada prompts outperforms Claude Opus 4.6 (42.1%) by 26.5 percentage points. **47.1% pass@1** on MultiPL-E HumanEval-Ada (first published Ada results for any open model). Total training cost: ~$4.
23
 
24
+ See the [full model card](https://huggingface.co/the-clanker-lover/steelman-14b-ada-v0.1) for benchmark details, training methodology, and category breakdowns.
25
+
26
+ ## Ollama
27
 
28
  ```bash
29
  ollama run hf.co/the-clanker-lover/steelman-14b-ada-v0.1-GGUF
30
  ```
31
 
32
+ ### Recommended system prompt
33
 
34
  ```
35
+ You are an expert Ada 2022 and SPARK programmer.
36
  ```
37
 
38
+ ### Example
39
 
40
  ```
41
+ Write an Ada 2022 function with SPARK contracts that performs binary search
42
+ on a sorted array of integers. Include preconditions, postconditions,
43
+ and a loop invariant.
44
+ ```
45
+
46
+ ## llama.cpp
47
+
48
+ ```bash
49
+ # Download
50
+ huggingface-cli download the-clanker-lover/steelman-14b-ada-v0.1-GGUF steelman-14b-r5-Q4_K_M.gguf
51
+
52
+ # Run
53
+ llama-cli -m steelman-14b-r5-Q4_K_M.gguf \
54
+ --chat-template qwen2 \
55
+ -p "Write an Ada procedure that implements a concurrent producer-consumer queue using protected objects." \
56
+ -n 1024
57
  ```
58
 
59
  ## Details
60
 
61
  - **Quantization:** Q4_K_M (4-bit, k-quant medium)
62
  - **Base model:** Qwen2.5-Coder-14B-Instruct
63
+ - **Fine-tune:** R5 — 3,430 compiler-verified SFT pairs, QLoRA via Unsloth
64
+ - **File:** `steelman-14b-r5-Q4_K_M.gguf` (8.6 GB)
65
 
66
  ## License
67