Text Generation
Transformers
Safetensors
English
hrm_text
sky
sky-3b-q
0labs
cognixai
hrm-text
prefix-lm
instruction-tuned
lora
modal
made-in-india
Instructions to use 0labs-in/Sky-3B-Q with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use 0labs-in/Sky-3B-Q with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="0labs-in/Sky-3B-Q")# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("0labs-in/Sky-3B-Q") model = AutoModelForCausalLM.from_pretrained("0labs-in/Sky-3B-Q", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use 0labs-in/Sky-3B-Q 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-Q" # 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-Q", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/0labs-in/Sky-3B-Q
- SGLang
How to use 0labs-in/Sky-3B-Q 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-Q" \ --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-Q", "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-Q" \ --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-Q", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use 0labs-in/Sky-3B-Q with Docker Model Runner:
docker model run hf.co/0labs-in/Sky-3B-Q
Clean Sky-3B-Q model card
Browse files
README.md
CHANGED
|
@@ -62,25 +62,6 @@ The main fine-tuning source was:
|
|
| 62 |
|
| 63 |
- `WithinUsAI/claude_mythos_distilled_25k`
|
| 64 |
|
| 65 |
-
The run used a cleaned subset and small project-specific anchors:
|
| 66 |
-
|
| 67 |
-
| Source / domain | Rows used |
|
| 68 |
-
|---|---:|
|
| 69 |
-
| Math fallback anchors | 910 |
|
| 70 |
-
| Advanced coding | 595 |
|
| 71 |
-
| Mathematical reasoning | 252 |
|
| 72 |
-
| Scientific analysis | 108 |
|
| 73 |
-
| Agentic planning | 45 |
|
| 74 |
-
| General expert QA | 27 |
|
| 75 |
-
| Sky identity | 16 |
|
| 76 |
-
| General knowledge | 10 |
|
| 77 |
-
| Coding anchors | 9 |
|
| 78 |
-
| Constitutional safety | 8 |
|
| 79 |
-
| Research notes | 6 |
|
| 80 |
-
| General no-identity-leak anchors | 5 |
|
| 81 |
-
| Writing anchors | 5 |
|
| 82 |
-
| Planning anchors | 4 |
|
| 83 |
-
|
| 84 |
The dataset cleaning removed or softened repeated source-branding strings so the model answers as **Sky**, not as Claude/Mythos. The identity set was intentionally kept small to avoid identity fixation.
|
| 85 |
|
| 86 |
## Quick Start: Google Colab
|
|
@@ -226,26 +207,3 @@ It is best used as an experimental open assistant checkpoint, not as a productio
|
|
| 226 |
## Safety
|
| 227 |
|
| 228 |
The fine-tune includes a small constitutional safety slice, but this is not a complete safety training process. Do not rely on it for high-risk domains without additional evaluation, guardrails, and monitoring.
|
| 229 |
-
|
| 230 |
-
## Citation / Credit
|
| 231 |
-
|
| 232 |
-
Base model:
|
| 233 |
-
|
| 234 |
-
```text
|
| 235 |
-
sapientinc/HRM-Text-1B
|
| 236 |
-
```
|
| 237 |
-
|
| 238 |
-
Main dataset:
|
| 239 |
-
|
| 240 |
-
```text
|
| 241 |
-
WithinUsAI/claude_mythos_distilled_25k
|
| 242 |
-
```
|
| 243 |
-
|
| 244 |
-
Project identity:
|
| 245 |
-
|
| 246 |
-
```text
|
| 247 |
-
Sky, made by the 0labs and CognixAI team.
|
| 248 |
-
Made in India.
|
| 249 |
-
CEO: Atharvsinh Jadav.
|
| 250 |
-
```
|
| 251 |
-
|
|
|
|
| 62 |
|
| 63 |
- `WithinUsAI/claude_mythos_distilled_25k`
|
| 64 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 65 |
The dataset cleaning removed or softened repeated source-branding strings so the model answers as **Sky**, not as Claude/Mythos. The identity set was intentionally kept small to avoid identity fixation.
|
| 66 |
|
| 67 |
## Quick Start: Google Colab
|
|
|
|
| 207 |
## Safety
|
| 208 |
|
| 209 |
The fine-tune includes a small constitutional safety slice, but this is not a complete safety training process. Do not rely on it for high-risk domains without additional evaluation, guardrails, and monitoring.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|