How to use from
llama.cppInstall from WinGet (Windows)
winget install llama.cpp
# Start a local OpenAI-compatible server with a web UI:
llama-server -hf developmentseed/gazet-model:Q8_0# Run inference directly in the terminal:
llama-cli -hf developmentseed/gazet-model:Q8_0Use 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 developmentseed/gazet-model:Q8_0# Run inference directly in the terminal:
./llama-cli -hf developmentseed/gazet-model:Q8_0Build 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 developmentseed/gazet-model:Q8_0# Run inference directly in the terminal:
./build/bin/llama-cli -hf developmentseed/gazet-model:Q8_0Use Docker
docker model run hf.co/developmentseed/gazet-model:Q8_0Quick Links
Gazet Model
LoRA-finetuned Qwen3.5-0.8B for natural-language geocoding over Overture Maps and Natural Earth parquet datasets.
Two tasks:
- Place extraction: Given a user query, extract structured place names with optional country codes and subtypes
- Text-to-SQL: Given a user query and fuzzy-matched candidate entities, generate a DuckDB spatial SQL query
Files
| File | Description |
|---|---|
| ckpt-q8_0.gguf | Q8_0 quantized GGUF (812 MB), ready for llama-server |
| merged/ | Full merged safetensors (for re-quantization or further finetuning) |
Usage
Serve with llama-server:
# Download
hf download developmentseed/gazet-model ckpt-q8_0.gguf
# Serve
llama-server -m ckpt-q8_0.gguf -ngl 99 --port 9000 --ctx-size 2048
The model exposes /v1/chat/completions on port 9000.
Or use with the full gazet stack via Docker Compose (see gazet repo).
Training
Base model: unsloth/Qwen3.5-0.8B
Method: LoRA (r=16, alpha=32) via Unsloth
Data: developmentseed/gazet-dataset
Hardware: Single H200 on Modal (~2 hrs/epoch)
Optimizer: AdamW 8-bit, lr=1e-4, linear schedule
Max sequence length: 2048
Loss: Train on assistant responses only (Unsloth train_on_responses_only)
Full training code: github.com/developmentseed/gazet
- Downloads last month
- 1,032
Hardware compatibility
Log In to add your hardware
8-bit
Install from brew
# Start a local OpenAI-compatible server with a web UI: llama-server -hf developmentseed/gazet-model:Q8_0# Run inference directly in the terminal: llama-cli -hf developmentseed/gazet-model:Q8_0