Instructions to use Unseen1980/daedalus-150m-instruct with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Unseen1980/daedalus-150m-instruct with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="Unseen1980/daedalus-150m-instruct") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("Unseen1980/daedalus-150m-instruct") model = AutoModelForCausalLM.from_pretrained("Unseen1980/daedalus-150m-instruct", device_map="auto") messages = [ {"role": "user", "content": "Who are you?"}, ] inputs = tokenizer.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use Unseen1980/daedalus-150m-instruct with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Unseen1980/daedalus-150m-instruct" # 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-150m-instruct", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/Unseen1980/daedalus-150m-instruct
- SGLang
How to use Unseen1980/daedalus-150m-instruct 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 "Unseen1980/daedalus-150m-instruct" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Unseen1980/daedalus-150m-instruct", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'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 "Unseen1980/daedalus-150m-instruct" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Unseen1980/daedalus-150m-instruct", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use Unseen1980/daedalus-150m-instruct with Docker Model Runner:
docker model run hf.co/Unseen1980/daedalus-150m-instruct
Daedalus-150M β Instruct
A 150M-parameter language model built for CPU inference. Full attention is kept in only 6 of its 18 layers; the other 12 use short convolutions whose memory is two timesteps wide however long the conversation gets. Decoding therefore does not slow down as context grows.
Trained from scratch on 59.9B tokens, then instruction-tuned (SFT on smol-smoltalk + one DPO round on UltraFeedback).
- GGUF builds and full checkpoints: Unseen1980/daedalus-checkpoints
- Code and paper: unseen1980/daedalus
Usage
from transformers import AutoModelForCausalLM, AutoTokenizer
model_id = "Unseen1980/daedalus-150m-instruct"
tok = AutoTokenizer.from_pretrained(model_id)
model = AutoModelForCausalLM.from_pretrained(model_id)
messages = [{"role": "user", "content": "What is the capital of France?"}]
inputs = tok.apply_chat_template(messages, add_generation_prompt=True, return_tensors="pt")
out = model.generate(inputs, max_new_tokens=96, temperature=0.8,
top_p=0.9, repetition_penalty=1.15, do_sample=True)
print(tok.decode(out[0], skip_special_tokens=True))
Set repetition_penalty. Without it this model can lock onto a word and
repeat it until it runs out of tokens.
For CPU deployment, use the 4-bit GGUF (102 MB) from the checkpoints repository rather than these weights.
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 |
|---|---|---|
| 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 |
Validation bits-per-byte 0.8685. CPU decode ~440 tokens/second, and 1.76Γ faster than a same-size all-attention model at 2048 tokens of context β an advantage that grows with context rather than staying constant.
Limitations
It is a 150M model. It writes fluent, plausible text and gets plenty of facts wrong; the fair comparison is GPT-2 124M, which it beats. Short factual answers and explanations work best. Open-ended creative writing drifts after a few lines. English only, 2048-token context, single seed.
The 4-bit build costs about 6% perplexity β quantisation-aware training was built but did not run. Roughly 48% of the convolution channels are inert and cannot be pruned, and the 49,152-entry vocabulary is larger than this model size warrants. All three are documented in the paper.
- Downloads last month
- -
docker model run hf.co/Unseen1980/daedalus-150m-instruct