Text Generation
Transformers
Safetensors
minspark
language-model
transformer
rope
gqa
custom_code
tiny
looped
slm
custom-architecture
custom-tokenizer
Instructions to use MinimaLabs/min-spark with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use MinimaLabs/min-spark with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="MinimaLabs/min-spark", trust_remote_code=True)# Load model directly from transformers import AutoModelForCausalLM model = AutoModelForCausalLM.from_pretrained("MinimaLabs/min-spark", trust_remote_code=True, device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use MinimaLabs/min-spark with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "MinimaLabs/min-spark" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "MinimaLabs/min-spark", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/MinimaLabs/min-spark
- SGLang
How to use MinimaLabs/min-spark 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 "MinimaLabs/min-spark" \ --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": "MinimaLabs/min-spark", "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 "MinimaLabs/min-spark" \ --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": "MinimaLabs/min-spark", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use MinimaLabs/min-spark with Docker Model Runner:
docker model run hf.co/MinimaLabs/min-spark
remove hfviewer embed (refuses custom-code models); keep Hub frontmatter
Browse files
README.md
CHANGED
|
@@ -23,7 +23,7 @@ datasets:
|
|
| 23 |
|
| 24 |
# min-spark
|
| 25 |
|
| 26 |
-
**min-spark is a 5.76M-parameter language model with native effort levels.** It introduces controllable depth to the sub-10M model class
|
| 27 |
|
| 28 |
The model was trained on 10.01B tokens. Its looped decoder reuses a compact transformer core across multiple passes, giving a small model the computation of a deeper network while keeping the parameter count fixed.
|
| 29 |
|
|
@@ -137,10 +137,6 @@ KeyLM reports 29.9% on its ARC average, 29.7% on HellaSwag, and 60.0% on PIQA. m
|
|
| 137 |
| Context window | 512 tokens |
|
| 138 |
| Effort (loop count) | low = 2 路 medium = 3 路 high = 4 |
|
| 139 |
|
| 140 |
-
[](https://hfviewer.com/MinimaLabs/min-spark)
|
| 141 |
-
|
| 142 |
-
Open the image to explore the full architecture graph in hfviewer, including the block-level structure and parameter flow.
|
| 143 |
-
|
| 144 |
## Training
|
| 145 |
|
| 146 |
| Field | Value |
|
|
@@ -176,4 +172,4 @@ The model supports a 512-token context window. Generation accepts one sequence a
|
|
| 176 |
|
| 177 |
## License
|
| 178 |
|
| 179 |
-
Apache-2.0. See [LICENSE](LICENSE).
|
|
|
|
| 23 |
|
| 24 |
# min-spark
|
| 25 |
|
| 26 |
+
**min-spark is a 5.76M-parameter language model with native effort levels.** It introduces controllable depth to the sub-10M model class. The same checkpoint can produce a quick completion or spend more computation on the same prompt, selected with one inference argument.
|
| 27 |
|
| 28 |
The model was trained on 10.01B tokens. Its looped decoder reuses a compact transformer core across multiple passes, giving a small model the computation of a deeper network while keeping the parameter count fixed.
|
| 29 |
|
|
|
|
| 137 |
| Context window | 512 tokens |
|
| 138 |
| Effort (loop count) | low = 2 路 medium = 3 路 high = 4 |
|
| 139 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 140 |
## Training
|
| 141 |
|
| 142 |
| Field | Value |
|
|
|
|
| 172 |
|
| 173 |
## License
|
| 174 |
|
| 175 |
+
Apache-2.0. See [LICENSE](LICENSE).
|