ternary-models: VLMs, Multimodal & Audio
Collection
Ternary-quantized models for architectures GGUF can't handle. tritplane3 scheme. โข 16 items โข Updated โข 2
How to use AsadIsmail/SmolVLM2-256M-Video-Instruct-ternary with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("image-text-to-text", model="AsadIsmail/SmolVLM2-256M-Video-Instruct-ternary") # Load model directly
from transformers import AutoModel
model = AutoModel.from_pretrained("AsadIsmail/SmolVLM2-256M-Video-Instruct-ternary", dtype="auto")How to use AsadIsmail/SmolVLM2-256M-Video-Instruct-ternary with vLLM:
# Install vLLM from pip:
pip install vllm
# Start the vLLM server:
vllm serve "AsadIsmail/SmolVLM2-256M-Video-Instruct-ternary"
# Call the server using curl (OpenAI-compatible API):
curl -X POST "http://localhost:8000/v1/completions" \
-H "Content-Type: application/json" \
--data '{
"model": "AsadIsmail/SmolVLM2-256M-Video-Instruct-ternary",
"prompt": "Once upon a time,",
"max_tokens": 512,
"temperature": 0.5
}'docker model run hf.co/AsadIsmail/SmolVLM2-256M-Video-Instruct-ternary
How to use AsadIsmail/SmolVLM2-256M-Video-Instruct-ternary with SGLang:
# Install SGLang from pip:
pip install sglang
# Start the SGLang server:
python3 -m sglang.launch_server \
--model-path "AsadIsmail/SmolVLM2-256M-Video-Instruct-ternary" \
--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": "AsadIsmail/SmolVLM2-256M-Video-Instruct-ternary",
"prompt": "Once upon a time,",
"max_tokens": 512,
"temperature": 0.5
}'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 "AsadIsmail/SmolVLM2-256M-Video-Instruct-ternary" \
--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": "AsadIsmail/SmolVLM2-256M-Video-Instruct-ternary",
"prompt": "Once upon a time,",
"max_tokens": 512,
"temperature": 0.5
}'How to use AsadIsmail/SmolVLM2-256M-Video-Instruct-ternary with Docker Model Runner:
docker model run hf.co/AsadIsmail/SmolVLM2-256M-Video-Instruct-ternary
Ternary-quantized version of HuggingFaceTB/SmolVLM2-256M-Video-Instruct โ the smallest video-understanding VLM, now even smaller. Ideal for edge deployment.
| Property | Value |
|---|---|
| Base Model | HuggingFaceTB/SmolVLM2-256M-Video-Instruct |
| Parameters | 256M |
| Quantization | tritplane3 (211 linear layers) |
| Full-model effective bits | 12.91 |
| Compression ratio | 1.24ร |
| Avg reconstruction error | 0.1488 |
Part of ternary-models.
Base model
HuggingFaceTB/SmolLM2-135M