Instructions to use 0labs-in/Sky-3B-SORE with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use 0labs-in/Sky-3B-SORE with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="0labs-in/Sky-3B-SORE")# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("0labs-in/Sky-3B-SORE") model = AutoModelForCausalLM.from_pretrained("0labs-in/Sky-3B-SORE") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use 0labs-in/Sky-3B-SORE with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "0labs-in/Sky-3B-SORE" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "0labs-in/Sky-3B-SORE", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/0labs-in/Sky-3B-SORE
- SGLang
How to use 0labs-in/Sky-3B-SORE 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 "0labs-in/Sky-3B-SORE" \ --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": "0labs-in/Sky-3B-SORE", "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 "0labs-in/Sky-3B-SORE" \ --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": "0labs-in/Sky-3B-SORE", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use 0labs-in/Sky-3B-SORE with Docker Model Runner:
docker model run hf.co/0labs-in/Sky-3B-SORE
Sky-3B-SORE (Fine-Tuned)
Spectral Orthogonal Retrofit Enhancement (SORE) -- Fine-Tuned Variant
0labs | Sapient Intelligence | May 2026
Model Description
Sky-3B-SORE is a 3B-parameter language model created by applying the SORE (Spectral Orthogonal Retrofit Enhancement) framework to the sapientinc/HRM-Text-1B base model, followed by instruction fine-tuning on just 4.5M tokens.
SORE is a novel post-hoc architectural enhancement method that injects advanced reasoning and instruction-following capabilities into pretrained language models using SVD-based spectral decomposition -- requiring up to 10,000x less training compute and 1,000x less data than comparable models.
Key Results
| Benchmark | Base Model (1.18B) | Fine-Tuned SORE (2.99B) | Delta |
|---|---|---|---|
| ARC-Challenge (25-shot) | 81.9% | 84.4% | +2.5% |
| MATH (0-shot CoT) | 56.2% | 65.0% | +8.8% |
| Instruction Following | 33.3% | 98.0% | +64.7% |
| Overall Capabilities | 35.7% | 57.1% | +21.4% |
| MMLU (5-shot) | 60.8% | 61.0% | +0.2% |
Comparison vs. Larger Models
| Model | Parameters | Avg Benchmark | Training Data |
|---|---|---|---|
| Sky-3B-SORE (Ours) | 3B | 70.3% | 40B tokens |
| GPT-3.5 | ~175B | 63.4% | 30T tokens |
| Llama 3.1 8B | 8B | 66.1% | 15T tokens |
| Gemma 2 9B | 9B | 61.4% | 8T tokens |
| Olmo 3 7B | 7B | 64.7% | 6T tokens |
Usage
from transformers import AutoModelForCausalLM, AutoTokenizer
import torch
model = AutoModelForCausalLM.from_pretrained(
"0labs-in/Sky-3B-SORE",
torch_dtype=torch.bfloat16,
device_map="auto",
trust_remote_code=True
)
tokenizer = AutoTokenizer.from_pretrained("0labs-in/Sky-3B-SORE")
prompt = "You are a helpful assistant.\n\nUser: What is the capital of France?\nAssistant:"
inputs = tokenizer(prompt, return_tensors="pt").to(model.device)
outputs = model.generate(**inputs, max_new_tokens=256, temperature=0.7)
print(tokenizer.decode(outputs[0], skip_special_tokens=True))
Citation
@misc{jadav2026sore,
title={SORE: Spectral Orthogonal Retrofit Enhancement for Post-Hoc Model Enhancement},
author={Atharvsinh Jadav},
year={2026},
organization={0labs / Sapient Intelligence}
}
License
Apache 2.0
- Downloads last month
- 106
Model tree for 0labs-in/Sky-3B-SORE
Base model
sapientinc/HRM-Text-1B