Instructions to use aethertp/PicoLM-V2.1-81M-Instruct 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 aethertp/PicoLM-V2.1-81M-Instruct 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 aethertp/PicoLM-V2.1-81M-Instruct # Run inference directly in the terminal: llama cli -hf aethertp/PicoLM-V2.1-81M-Instruct
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf aethertp/PicoLM-V2.1-81M-Instruct # Run inference directly in the terminal: llama cli -hf aethertp/PicoLM-V2.1-81M-Instruct
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 aethertp/PicoLM-V2.1-81M-Instruct # Run inference directly in the terminal: ./llama-cli -hf aethertp/PicoLM-V2.1-81M-Instruct
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 aethertp/PicoLM-V2.1-81M-Instruct # Run inference directly in the terminal: ./build/bin/llama-cli -hf aethertp/PicoLM-V2.1-81M-Instruct
Use Docker
docker model run hf.co/aethertp/PicoLM-V2.1-81M-Instruct
- LM Studio
- Jan
- vLLM
How to use aethertp/PicoLM-V2.1-81M-Instruct with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "aethertp/PicoLM-V2.1-81M-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": "aethertp/PicoLM-V2.1-81M-Instruct", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/aethertp/PicoLM-V2.1-81M-Instruct
- Ollama
How to use aethertp/PicoLM-V2.1-81M-Instruct with Ollama:
ollama run hf.co/aethertp/PicoLM-V2.1-81M-Instruct
- Unsloth Desktop
- Docker Model Runner
How to use aethertp/PicoLM-V2.1-81M-Instruct with Docker Model Runner:
docker model run hf.co/aethertp/PicoLM-V2.1-81M-Instruct
- Lemonade
How to use aethertp/PicoLM-V2.1-81M-Instruct with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull aethertp/PicoLM-V2.1-81M-Instruct
Run and chat with the model
lemonade run user.PicoLM-V2.1-81M-Instruct-{{QUANT_TAG}}List all available models
lemonade list
- Atomic Chat
PicoLM-V2.1-81M-Instruct π
PicoLM-V2.1-81M-Instruct is the targeted alignment release of the PicoLM architecture, engineered with MobileLLM-LS (Immediate Block-wise Layer Sharing).
Operating with an effective computational depth of 36 layers across an 81.86-million parameter footprint, PicoLM-V2.1 incorporates surgical instruction tuning with synthetic algorithmic scratchpads, explicit persona alignment, and targeted commonsense repairs.
π Model Overview
- Developer: Emre Polat
- Physical Parameters: 81,861,696 (~81.86M)
- Computational Depth: 36 Layers (18 physical blocks $\times$ 2 passes)
- Context Window: 2,048 tokens
- Vocabulary: 24,576 (Single-digit regex split, Byte-level BPE, Atomic
<thought>tags) - Format: Safetensors (FP16) & GGUF
- License: Apache 2.0
π Empirical Benchmark Results (Verified)
All scores below were empirically measured directly on the model weights using standardized log-likelihood evaluations:
| Benchmark / Task | Random Baseline | PicoLM-80M (V1) | PicoLM-V2.1-81M (Ours) | Gemma 3 270M (Google) | SmolLM2-135M (HF) |
|---|---|---|---|---|---|
| ARC-Easy (Science QA) | 25.00% | 25.60% (Floor) | 42.00% (+16.4%) | 57.70% | 58.50% |
| HellaSwag (Commonsense) | 25.00% | 31.20% | 34.40% (+3.2%) | 37.70% | 42.10% |
| Validation Perplexity | ~24,576 | 14.65 (16k) | 16.08 (24k) | β | β |
| Identity Alignment | Hallucinated | Generic | "I am PicoLM-V2.1, developed by Emre Polat." | Corporate | Corporate |
| Algorithmic Python | Broken Parity | Syntax only | Clean Recursive Factorial Execution | Working | Working |
| Stop Token Discipline | Loops | Strict | **100% strict `< | im_end | >` termination** |
π οΈ V2.1 Alignment Upgrades
- Explicit Identity & Persona: Aligned to correctly identify as
PicoLM-V2.1, created by Emre Polat, avoiding generic synthetic hallucination loops. - Algorithmic Recursion Repairs: Fixed mathematical parity confusion in recursive Python code generation (
factorialrecursive inductive steps verified). - Biological & Ontological Grounding: Eliminated semantic category bleeding (cats/dogs accurately identified as felines/canines with distinct traits).
- Scratchpad Arithmetic Traces: Multi-step arithmetic reasoning traces embedded directly into post-training representations.
π» Quickstart (Transformers Native)
from transformers import AutoModelForCausalLM, AutoTokenizer
model_id = "aethertp/PicoLM-V2.1-81M-Instruct"
tokenizer = AutoTokenizer.from_pretrained(model_id, trust_remote_code=True)
model = AutoModelForCausalLM.from_pretrained(model_id, trust_remote_code=True).cuda()
messages = [{"role": "user", "content": "Hello! Who are you?"}]
prompt = tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
inputs = tokenizer(prompt, return_tensors="pt").to("cuda")
outputs = model.generate(**inputs, max_new_tokens=60, temperature=0.6, do_sample=True)
print(tokenizer.decode(outputs[0][inputs.input_ids.shape[1]:]))
π± Mobile Deployment (GGUF)
PicoLM-V2.1 runs out of the box on mobile devices via PocketPal AI and MobAI:
- File:
picolm-v2.1-81m-instruct-fp16.gguf - Memory Footprint: ~175 MB RAM
- Mobile Throughput: ~40-45 tokens/sec
- Downloads last month
- 222