Instructions to use sizzlebop/Glimmer-1-Base-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use sizzlebop/Glimmer-1-Base-GGUF with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="sizzlebop/Glimmer-1-Base-GGUF")# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("sizzlebop/Glimmer-1-Base-GGUF", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use sizzlebop/Glimmer-1-Base-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 sizzlebop/Glimmer-1-Base-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf sizzlebop/Glimmer-1-Base-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 sizzlebop/Glimmer-1-Base-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf sizzlebop/Glimmer-1-Base-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 sizzlebop/Glimmer-1-Base-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf sizzlebop/Glimmer-1-Base-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 sizzlebop/Glimmer-1-Base-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf sizzlebop/Glimmer-1-Base-GGUF:Q4_K_M
Use Docker
docker model run hf.co/sizzlebop/Glimmer-1-Base-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use sizzlebop/Glimmer-1-Base-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "sizzlebop/Glimmer-1-Base-GGUF" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "sizzlebop/Glimmer-1-Base-GGUF", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/sizzlebop/Glimmer-1-Base-GGUF:Q4_K_M
- SGLang
How to use sizzlebop/Glimmer-1-Base-GGUF with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "sizzlebop/Glimmer-1-Base-GGUF" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "sizzlebop/Glimmer-1-Base-GGUF", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "sizzlebop/Glimmer-1-Base-GGUF" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "sizzlebop/Glimmer-1-Base-GGUF", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Ollama
How to use sizzlebop/Glimmer-1-Base-GGUF with Ollama:
ollama run hf.co/sizzlebop/Glimmer-1-Base-GGUF:Q4_K_M
- Unsloth Desktop
- Docker Model Runner
How to use sizzlebop/Glimmer-1-Base-GGUF with Docker Model Runner:
docker model run hf.co/sizzlebop/Glimmer-1-Base-GGUF:Q4_K_M
- Lemonade
How to use sizzlebop/Glimmer-1-Base-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull sizzlebop/Glimmer-1-Base-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.Glimmer-1-Base-GGUF-Q4_K_M
List all available models
lemonade list
- Atomic Chat
Glimmer-1 Base GGUF
This repository provides GGUF quantizations for Glint-Research/Glimmer-1-Base.
Glimmer-1 is an extreme Small Language Model (SLM) exploring the lower bounds of language model scale. Featuring approximately 11,900 parameters across 2 layers with a hidden dimension of 16, it was trained on 500K tokens of FineWeb-Edu. It serves as an experimental artifact for architectural exploration, micro-benchmarking, and educational deployment on ultra-minimal microcontrollers.
All GGUF files were converted from the original safetensors weights using llama.cpp at native F16 precision, followed by standard quantization passes.
Available Files and Quantizations
| File | Quant Type | Size | Description / Recommendation |
|---|---|---|---|
Glimmer-1-Base-F16.gguf |
F16 | 38.22 KB | Full precision base conversion. Highest fidelity reference weights. |
Glimmer-1-Base-Q8_0.gguf |
Q8_0 | 38.22 KB | Near-lossless quantization (retains F16 tensors where dimensions < block size). |
Glimmer-1-Base-Q6_K.gguf |
Q6_K | 38.22 KB | High quality retention variant. |
Glimmer-1-Base-Q5_K_M.gguf |
Q5_K_M | 38.22 KB | Compact representation. |
Glimmer-1-Base-Q4_K_M.gguf |
Q4_K_M | 38.22 KB | Recommended default for microcontrollers, embedded hardware, and edge toys. |
Glimmer-1-Base-Q3_K_M.gguf |
Q3_K_M | 38.22 KB | Compact footprint. |
Glimmer-1-Base-Q2_K.gguf |
Q2_K | 38.22 KB | Maximum compression variant. |
Note: Due to the micro-dimensions of this model (hidden size 16, intermediate size 24), tensor columns are smaller than standard quantization block boundaries (32/256), resulting in automatic fallback to high-precision storage across quantizations.
Model Architecture Details
- Base Architecture:
LlamaForCausalLM(llama) - Parameters: ~11,900
- Layers: 2
- Hidden Size: 16
- Intermediate Size: 24
- Attention Heads: 4 query heads / 1 KV head (GQA), head dimension 4
- Context Length: 512 tokens
- Vocabulary Size: 512 (compact custom BPE)
- RoPE Theta: 10,000.0
Prompt Format and Usage
Glimmer-1-Base is a raw pretrained base model without instruction fine-tuning:
The
Quickstart Guide
1. llama.cpp
Run text completion with llama-cli:
llama-cli -m ./Glimmer-1-Base-Q4_K_M.gguf \
-p "The story began when" \
-n 64 \
--temp 0.8
Launch a local inference server with llama-server:
llama-server -m ./Glimmer-1-Base-Q4_K_M.gguf \
--port 8080 \
-c 512
2. Ollama
Create a Modelfile:
FROM ./Glimmer-1-Base-Q4_K_M.gguf
PARAMETER temperature 0.8
Build and run:
ollama create glimmer-base -f Modelfile
ollama run glimmer-base "Once upon"
3. LM Studio
- Copy the
.gguffile to your LM Studio models directory. - Select
Glimmer-1-Base-Q4_K_M.gguf. - Set prompt template to raw text completion.
- Downloads last month
- 242
2-bit
3-bit
4-bit
5-bit
6-bit
8-bit
16-bit
Model tree for sizzlebop/Glimmer-1-Base-GGUF
Base model
Glint-Research/Glimmer-1-Base