Instructions to use Unseen1980/daedalus-checkpoints 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 Unseen1980/daedalus-checkpoints 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 Unseen1980/daedalus-checkpoints:F16 # Run inference directly in the terminal: llama cli -hf Unseen1980/daedalus-checkpoints:F16
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf Unseen1980/daedalus-checkpoints:F16 # Run inference directly in the terminal: llama cli -hf Unseen1980/daedalus-checkpoints:F16
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 Unseen1980/daedalus-checkpoints:F16 # Run inference directly in the terminal: ./llama-cli -hf Unseen1980/daedalus-checkpoints:F16
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 Unseen1980/daedalus-checkpoints:F16 # Run inference directly in the terminal: ./build/bin/llama-cli -hf Unseen1980/daedalus-checkpoints:F16
Use Docker
docker model run hf.co/Unseen1980/daedalus-checkpoints:F16
- LM Studio
- Jan
- vLLM
How to use Unseen1980/daedalus-checkpoints with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Unseen1980/daedalus-checkpoints" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Unseen1980/daedalus-checkpoints", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/Unseen1980/daedalus-checkpoints:F16
- Ollama
How to use Unseen1980/daedalus-checkpoints with Ollama:
ollama run hf.co/Unseen1980/daedalus-checkpoints:F16
- Unsloth Studio
How to use Unseen1980/daedalus-checkpoints with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for Unseen1980/daedalus-checkpoints to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for Unseen1980/daedalus-checkpoints to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for Unseen1980/daedalus-checkpoints to start chatting
- Docker Model Runner
How to use Unseen1980/daedalus-checkpoints with Docker Model Runner:
docker model run hf.co/Unseen1980/daedalus-checkpoints:F16
- Lemonade
How to use Unseen1980/daedalus-checkpoints with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull Unseen1980/daedalus-checkpoints:F16
Run and chat with the model
lemonade run user.daedalus-checkpoints-F16
List all available models
lemonade list
- Atomic Chat
Daedalus-150M
A 150M-parameter language model built for CPU inference. Two thirds of its layers are short convolutions with a fixed-size state instead of attention, so decoding does not slow down as the context grows.
Trained from scratch on 59.9B tokens. Code and paper: unseen1980/daedalus.
Quick start
brew install llama.cpp # or build from ggml-org/llama.cpp
hf download Unseen1980/daedalus-checkpoints instruct/model-q4_0.gguf --local-dir ./daedalus
llama-cli -m ./daedalus/instruct/model-q4_0.gguf -cnv \
--temp 0.8 --top-p 0.9 --repeat-penalty 1.15
Pass sampling flags. llama.cpp defaults --repeat-penalty to 1.0, i.e. off,
and this model will loop on a repeated token without it.
Files
| File | Size | What |
|---|---|---|
instruct/model-q4_0.gguf |
102 MB | chat model, 4-bit โ start here |
gguf/hero-base-q4_0.gguf |
102 MB | base model, text completion |
gguf/instruct-f16.gguf |
323 MB | instruct, f16 โ for re-quantising |
gguf/hero-base-f16.gguf |
323 MB | base, f16 |
hf/instruct/, hf/base/ |
321 MB | HF-format safetensors + tokenizer |
final/hero/checkpoint.pt |
1.4 GB | base weights + optimizer state |
final/post-sft/final.pt |
642 MB | instruct weights, full precision |
The base model deliberately carries no chat template. Giving one to a base
model makes llama.cpp wrap prompts in markup it never saw during training, which
produces fluent but unrelated output. Use plain prompts, or llama-completion.
Results
Five-task mean over HellaSwag, ARC-Easy, PIQA, OpenBookQA and WinoGrande, with every peer re-scored on the same harness rather than quoted from its paper.
| Model | Training tokens | 5-task mean |
|---|---|---|
| Daedalus-150M | 59.9B | 47.31 |
| MobileLLM-125M | 1T | 46.3 (published) |
| GPT-2 124M | โ | 42.2 |
| OPT-125M | 180B | 42.1 |
| GPT-neo-125M | 300B | 41.9 |
| Pythia-160M | 300B | 41.0 |
| SmolLM2-135M | 2T | 51.2 |
Validation bits-per-byte 0.8685 over 645M held-out tokens.
SmolLM2-135M stays ahead on quality โ conceded in advance. The trade this model makes is speed.
Speed
CPU decode, 4-bit, 8 threads, against a parameter-matched all-attention twin trained on identical data:
| Context | Daedalus | Dense twin | Ratio |
|---|---|---|---|
| 0 | 1112 tok/s | 923 tok/s | 1.20ร |
| 512 | 960 tok/s | 664 tok/s | 1.45ร |
| 2048 | 739 tok/s | 420 tok/s | 1.76ร |
The trend is the result. At an empty context the hybrid has nothing to gain โ its advantage is the keyโvalue cache it does not keep. Against an external 135M peer the same pattern reaches 2.08ร at 2048 tokens.
Per token of context this model reads 6,144 bytes of cache against a 24-layer all-attention model's 12,288 โ half. At 2048 tokens that is 12.6 MB re-read per generated token instead of 25.2 MB.
Architecture
18 blocks, d_model 768, vocab 49,152, context 2048
block: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
type: C C C C A C C A C A C A C A C C A C
A = full attention (6) GQA, 12 query heads / 4 KV heads
C = short convolution (12) depthwise, kernel 3, fixed 2-step state
Tied embeddings, 2048 FFN, RoPE ฮธ=1e6. Q4_0 chosen for ARM kernel speed rather
than its error curve.
Training
59.9B tokens over a 16.9B-token corpus (~3.5 epochs, capped at 4 per source) of public English data weighted toward educational text: FineWeb-Edu 37.5%, DCLM-baseline 22.5%, Stack-Edu 9%, FinePDFs-Edu 8%, FinePhrase 7%, Cosmopedia-v2 5%, FineMath + InfiWebMath 6%, FineWiki-en 3%, dialogue 2%.
Muon on weight matrices, AdamW on embeddings and norms. WSD schedule with linear decay to zero over the final 45%. One RTX 5090, ~$46 of GPU time.
Post-training: SFT on smol-smoltalk, then one DPO round on UltraFeedback.
Limitations
- English only, 2048-token context, single seed.
- 4-bit costs ~6% perplexity, not the ~2.5% intended โ quantisation-aware training was built and validated, then crashed on activation and never ran. The f16 files let you re-quantise without retraining.
- ~48% of convolution channels are dead (13.6M inert parameters). They cannot be pruned at export: llama.cpp shape-checks those tensors against the model width.
- Vocabulary is oversized at 49,152 โ inherited from a tokenizer chosen for a distillation plan that was cancelled. Scaling laws suggest 24โ32k here; it costs 23% of parameters to a lookup table.
- Mixture skew 10.42 against a 10.0 pre-registered limit, from training 59.9B tokens on a 16.9B corpus.
- It is a 150M model. It writes fluent, plausible text and gets many facts wrong. The right reference class is GPT-2 124M.
Citation
@misc{koutsiaris2026daedalus,
title = {Daedalus-150M: A Convolution--Attention Hybrid Designed for CPU Inference},
author = {Christos Koutsiaris},
year = {2026},
url = {https://github.com/unseen1980/daedalus}
}
- Downloads last month
- 3
4-bit
16-bit
Model tree for Unseen1980/daedalus-checkpoints
Unable to build the model tree, the base model loops to the model itself. Learn more.