Text Generation
GGUF
English
Adangme
ada2022
spark
quantized
code-generation
defense
aerospace
safety-critical
conversational
Instructions to use the-clanker-lover/steelman-14b-ada-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use the-clanker-lover/steelman-14b-ada-GGUF with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf the-clanker-lover/steelman-14b-ada-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf the-clanker-lover/steelman-14b-ada-GGUF:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf the-clanker-lover/steelman-14b-ada-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf the-clanker-lover/steelman-14b-ada-GGUF:Q4_K_M
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf the-clanker-lover/steelman-14b-ada-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf the-clanker-lover/steelman-14b-ada-GGUF:Q4_K_M
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf the-clanker-lover/steelman-14b-ada-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf the-clanker-lover/steelman-14b-ada-GGUF:Q4_K_M
Use Docker
docker model run hf.co/the-clanker-lover/steelman-14b-ada-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use the-clanker-lover/steelman-14b-ada-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "the-clanker-lover/steelman-14b-ada-GGUF" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "the-clanker-lover/steelman-14b-ada-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/the-clanker-lover/steelman-14b-ada-GGUF:Q4_K_M
- Ollama
How to use the-clanker-lover/steelman-14b-ada-GGUF with Ollama:
ollama run hf.co/the-clanker-lover/steelman-14b-ada-GGUF:Q4_K_M
- Unsloth Desktop
- Pi
How to use the-clanker-lover/steelman-14b-ada-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf the-clanker-lover/steelman-14b-ada-GGUF:Q4_K_M
Configure the model in Pi
# Install Pi: npm install -g @earendil-works/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "the-clanker-lover/steelman-14b-ada-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use the-clanker-lover/steelman-14b-ada-GGUF with Docker Model Runner:
docker model run hf.co/the-clanker-lover/steelman-14b-ada-GGUF:Q4_K_M
- Lemonade
How to use the-clanker-lover/steelman-14b-ada-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull the-clanker-lover/steelman-14b-ada-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.steelman-14b-ada-GGUF-Q4_K_M
List all available models
lemonade list
- Hermes Agent
How to use the-clanker-lover/steelman-14b-ada-GGUF with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf the-clanker-lover/steelman-14b-ada-GGUF:Q4_K_M
Configure Hermes
# Install Hermes: curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash hermes setup # Point Hermes at the local server: hermes config set model.provider custom hermes config set model.base_url http://127.0.0.1:8080/v1 hermes config set model.default the-clanker-lover/steelman-14b-ada-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use the-clanker-lover/steelman-14b-ada-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf the-clanker-lover/steelman-14b-ada-GGUF:Q4_K_M
Configure OpenClaw
# Install OpenClaw: npm install -g openclaw@latest # Register the local server and set it as the default model: openclaw onboard --non-interactive --mode local \ --auth-choice custom-api-key \ --custom-base-url http://127.0.0.1:8080/v1 \ --custom-model-id "the-clanker-lover/steelman-14b-ada-GGUF:Q4_K_M" \ --custom-provider-id llama-cpp \ --custom-compatibility openai \ --custom-text-input \ --accept-risk \ --skip-health
Run OpenClaw
openclaw agent --local --agent main --message "Hello from Hugging Face"
Final README with benchmark summary
Browse files
README.md
CHANGED
|
@@ -1,50 +1,67 @@
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
| 3 |
language:
|
| 4 |
-
-
|
| 5 |
-
|
| 6 |
-
base_model:
|
| 7 |
-
- Qwen/Qwen2.5-Coder-14B-Instruct
|
| 8 |
library_name: gguf
|
| 9 |
pipeline_tag: text-generation
|
| 10 |
tags:
|
| 11 |
-
-
|
| 12 |
-
-
|
| 13 |
-
- spark
|
| 14 |
-
- gguf
|
| 15 |
-
- quantized
|
|
|
|
|
|
|
| 16 |
---
|
| 17 |
|
| 18 |
-
# Steelman-14B-Ada
|
| 19 |
|
| 20 |
-
Q4_K_M quantized version of [Steelman-14B-Ada
|
| 21 |
|
| 22 |
-
|
| 23 |
|
| 24 |
-
|
|
|
|
|
|
|
| 25 |
|
| 26 |
```bash
|
| 27 |
ollama run hf.co/the-clanker-lover/steelman-14b-ada-v0.1-GGUF
|
| 28 |
```
|
| 29 |
|
| 30 |
-
###
|
| 31 |
|
| 32 |
```
|
| 33 |
-
|
| 34 |
```
|
| 35 |
|
| 36 |
-
###
|
| 37 |
|
| 38 |
```
|
| 39 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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 —
|
| 47 |
-
- **
|
| 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 |
|