Instructions to use 0arch-io/kisoku-3b 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 0arch-io/kisoku-3b 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 0arch-io/kisoku-3b # Run inference directly in the terminal: llama cli -hf 0arch-io/kisoku-3b
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf 0arch-io/kisoku-3b # Run inference directly in the terminal: llama cli -hf 0arch-io/kisoku-3b
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 0arch-io/kisoku-3b # Run inference directly in the terminal: ./llama-cli -hf 0arch-io/kisoku-3b
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 0arch-io/kisoku-3b # Run inference directly in the terminal: ./build/bin/llama-cli -hf 0arch-io/kisoku-3b
Use Docker
docker model run hf.co/0arch-io/kisoku-3b
- LM Studio
- Jan
- vLLM
How to use 0arch-io/kisoku-3b with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "0arch-io/kisoku-3b" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "0arch-io/kisoku-3b", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/0arch-io/kisoku-3b
- Ollama
How to use 0arch-io/kisoku-3b with Ollama:
ollama run hf.co/0arch-io/kisoku-3b
- Unsloth Studio
How to use 0arch-io/kisoku-3b 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 0arch-io/kisoku-3b 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 0arch-io/kisoku-3b to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for 0arch-io/kisoku-3b to start chatting
- Docker Model Runner
How to use 0arch-io/kisoku-3b with Docker Model Runner:
docker model run hf.co/0arch-io/kisoku-3b
- Lemonade
How to use 0arch-io/kisoku-3b with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull 0arch-io/kisoku-3b
Run and chat with the model
lemonade run user.kisoku-3b-{{QUANT_TAG}}List all available models
lemonade list
- Atomic Chat
Kisoku 3B
Kisoku is a 3.2B parameter language model trained from scratch by 0ARCH. Not a fine-tune: the base model was pretrained on 60B tokens over ten days on TPUs, then instruction-tuned.
This repo contains the repaired, Ollama-ready Q8_0 GGUF.
Quick start (Ollama)
Download kisoku-3b-repaired-q8.gguf and the Modelfile from this repo into the same folder, then:
ollama create kisoku -f Modelfile
ollama run kisoku
Runs at ~75 tokens/sec on an Apple Silicon MacBook.
What "repaired" means
The original training used a 128,000-token vocab against a 128,256-token Llama 3 tokenizer, leaving 256 special-token rows (including EOS) as untrained zeros. The model literally could not end a turn. The fix was a small repair fine-tune with a gradient hook that masked every embedding row except those 256 specials, so only the special tokens trained and the language weights could not degrade. Eleven minutes on 3 GPUs took EOS from rank ~4000 to rank 1.
Architecture notes
- Llama-style transformer, 3072 hidden dim, shipped under the Granite architecture in GGUF so that the training-time logit scaling (logits divided by ~55.4) is applied at runtime in FP32 instead of baked into quantized weights.
- Because of that scaling, temperature is compressed: 0.01 here behaves like ~0.55 on a normal model. The included Modelfile sets this for you.
- Context: 4096 tokens.
Honest limitations
This is a 3B model trained on 60B tokens; the big labs use a few hundred times more text. It gets facts wrong, invents things confidently, and its arithmetic is weak. It knows its name and who built it because that was in the training data. Treat it as a proof of what one person can train, not as a production assistant.
License
MIT.
- Downloads last month
- 137
We're not able to determine the quantization variants.