Instructions to use sizzlebop/HybridIntelligence-0.5B-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use sizzlebop/HybridIntelligence-0.5B-GGUF with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="sizzlebop/HybridIntelligence-0.5B-GGUF")# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("sizzlebop/HybridIntelligence-0.5B-GGUF", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use sizzlebop/HybridIntelligence-0.5B-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/HybridIntelligence-0.5B-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf sizzlebop/HybridIntelligence-0.5B-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/HybridIntelligence-0.5B-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf sizzlebop/HybridIntelligence-0.5B-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/HybridIntelligence-0.5B-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf sizzlebop/HybridIntelligence-0.5B-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/HybridIntelligence-0.5B-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf sizzlebop/HybridIntelligence-0.5B-GGUF:Q4_K_M
Use Docker
docker model run hf.co/sizzlebop/HybridIntelligence-0.5B-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use sizzlebop/HybridIntelligence-0.5B-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "sizzlebop/HybridIntelligence-0.5B-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/HybridIntelligence-0.5B-GGUF", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/sizzlebop/HybridIntelligence-0.5B-GGUF:Q4_K_M
- SGLang
How to use sizzlebop/HybridIntelligence-0.5B-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/HybridIntelligence-0.5B-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/HybridIntelligence-0.5B-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/HybridIntelligence-0.5B-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/HybridIntelligence-0.5B-GGUF", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Ollama
How to use sizzlebop/HybridIntelligence-0.5B-GGUF with Ollama:
ollama run hf.co/sizzlebop/HybridIntelligence-0.5B-GGUF:Q4_K_M
- Unsloth Desktop
- Docker Model Runner
How to use sizzlebop/HybridIntelligence-0.5B-GGUF with Docker Model Runner:
docker model run hf.co/sizzlebop/HybridIntelligence-0.5B-GGUF:Q4_K_M
- Lemonade
How to use sizzlebop/HybridIntelligence-0.5B-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull sizzlebop/HybridIntelligence-0.5B-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.HybridIntelligence-0.5B-GGUF-Q4_K_M
List all available models
lemonade list
- Atomic Chat
Hybrid Intelligence 0.5B GGUF
This repository provides GGUF quantizations for Merlin-Research/HybridIntelligence-0.5B.
Hybrid Intelligence 0.5B is built on the Falcon-H1 hybrid architecture, combining Mamba2 state-space blocks (SSM) with standard multi-head attention layers across 36 hidden layers. It couples causal language generation with neuromorphic uncertainty signals, optimized through Direct Preference Optimization (DPO) and biological neural network (BNN) calibration.
All GGUF files were converted from the original safetensors weights using llama.cpp at native BF16 precision, followed by standard k-quant quantization.
Available Files and Quantizations
| File | Quant Type | Size | Description / Recommendation |
|---|---|---|---|
HybridIntelligence-0.5B-BF16.gguf |
BF16 | 996.36 MB | Native bfloat16 base conversion. Highest fidelity reference weights. |
HybridIntelligence-0.5B-Q8_0.gguf |
Q8_0 | 530.54 MB | Near-lossless 8-bit quantization. Recommended for best quality evaluation. |
HybridIntelligence-0.5B-Q6_K.gguf |
Q6_K | 410.21 MB | High quality retention with minimal degradation. Excellent accuracy/memory balance. |
HybridIntelligence-0.5B-Q5_K_M.gguf |
Q5_K_M | 353.55 MB | Good balance between memory consumption and text generation fidelity. |
HybridIntelligence-0.5B-Q4_K_M.gguf |
Q4_K_M | 300.22 MB | Fast, lightweight 4-bit quant. Recommended default for edge devices and mobile setups. |
HybridIntelligence-0.5B-Q3_K_M.gguf |
Q3_K_M | 241.70 MB | Compact footprint when memory headroom is strictly limited. |
HybridIntelligence-0.5B-Q2_K.gguf |
Q2_K | 191.60 MB | Maximum compression for ultra-constrained low-RAM environments. |
Model Architecture Details
- Base Architecture:
FalconH1ForCausalLM(falcon_h1) - Layers: 36 (hybrid Mamba2 SSM + Multi-Head Attention)
- Hidden Size: 1024
- Attention Heads: 8 query heads / 2 KV heads, head dimension 64
- Mamba Heads: 24 heads, state dimension 128, conv kernel 4
- Intermediate Size: 2048
- Context Length: 16,384 tokens
- Vocabulary Size: 32,784
- Native Dtype:
bfloat16
Prompt Format and Usage
Falcon-H1 uses standard autoregressive completion format:
The key difference between biological and artificial neural networks is
Quickstart Guide
1. llama.cpp
Run generation with llama-cli:
llama-cli -m ./HybridIntelligence-0.5B-Q4_K_M.gguf \
-p "The emergence of intelligence in complex adaptive systems can be described as" \
-n 256 \
--temp 0.7 \
--top-p 0.9 \
--repeat-penalty 1.1
Launch a local inference server with llama-server:
llama-server -m ./HybridIntelligence-0.5B-Q4_K_M.gguf \
--port 8080 \
-c 4096
2. Ollama
Create a Modelfile:
FROM ./HybridIntelligence-0.5B-Q4_K_M.gguf
PARAMETER temperature 0.7
PARAMETER top_p 0.9
Build and run:
ollama create hybrid-intelligence -f Modelfile
ollama run hybrid-intelligence "Explain state-space models in simple terms."
3. LM Studio
- Copy the
.gguffile to your LM Studio models folder. - Select
HybridIntelligence-0.5B-Q4_K_M.gguffrom the model menu. - Use raw text completion or standard system/user templates.
- Downloads last month
- -
2-bit
3-bit
4-bit
5-bit
6-bit
8-bit
16-bit
Model tree for sizzlebop/HybridIntelligence-0.5B-GGUF
Base model
tiiuae/Falcon-H1-0.5B-Base