How to use from
PiConfigure the model in Pi
# Install Pi:
npm install -g @mariozechner/pi-coding-agent# Add to ~/.pi/agent/models.json:
{
"providers": {
"llama-cpp": {
"baseUrl": "http://localhost:8080/v1",
"api": "openai-completions",
"apiKey": "none",
"models": [
{
"id": "sdf-classify"
}
]
}
}
}Run Pi
# Start Pi in your project directory:
piQuick Links
SDF Classify
Content type classifier for the SDF Protocol. Fine-tuned from Qwen2.5-1.5B-Instruct using QLoRA.
Purpose
Classifies web content into SDF's hierarchical type system: 10 parent types and 50+ subtypes (e.g., article.news, commerce.product, documentation.api_docs).
Training
- Base model: Qwen2.5-1.5B-Instruct
- Method: QLoRA (rank 32, alpha 64, dropout 0.05)
- Training data: 2,335 classified web documents
- Accuracy: 95.2% exact type match
Files
| File | Size | Description |
|---|---|---|
sdf-classify-Qwen2.5-1.5B-Instruct-Q4_K_M.gguf |
941 MB | Quantized (Q4_K_M) โ recommended for deployment |
sdf-classify-Qwen2.5-1.5B-Instruct-f16.gguf |
2.9 GB | Full precision (f16) |
Modelfile |
โ | Ollama import configuration |
Usage with Ollama
# Download the Q4_K_M file, then:
ollama create sdf-classify -f Modelfile
Part of SDF Protocol
- Protocol: sdfprotocol.org
- Specification: github.com/sdfprotocol/sdf
- Whitepaper: DOI 10.5281/zenodo.18559223
- Extractor model: pranab2050/sdf-extract
Citation
@article{sarkar2026sdf,
title={Convert Once, Consume Many: SDF for Cacheable, Typed Semantic Extraction from Web Pages},
author={Sarkar, Pranab},
year={2026},
doi={10.5281/zenodo.18559223},
publisher={Zenodo}
}
- Downloads last month
- 8
Hardware compatibility
Log In to add your hardware
4-bit
16-bit
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp# Start a local OpenAI-compatible server: llama-server -hf sdfprotocol/sdf-classify:Q4_K_M