Image-Text-to-Text
Transformers
Safetensors
English
qwen3_5
piko
piko-9b
multimodal
vision-language
hybrid-attention
linear-attention
ocr
document-understanding
conversational
Instructions to use Dexy2/Piko-9b with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Dexy2/Piko-9b with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-text-to-text", model="Dexy2/Piko-9b") messages = [ { "role": "user", "content": [ {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"}, {"type": "text", "text": "What animal is on the candy?"} ] }, ] pipe(text=messages)# Load model directly from transformers import AutoProcessor, AutoModelForMultimodalLM processor = AutoProcessor.from_pretrained("Dexy2/Piko-9b") model = AutoModelForMultimodalLM.from_pretrained("Dexy2/Piko-9b", device_map="auto") messages = [ { "role": "user", "content": [ {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"}, {"type": "text", "text": "What animal is on the candy?"} ] }, ] inputs = processor.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(processor.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use Dexy2/Piko-9b with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Dexy2/Piko-9b" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Dexy2/Piko-9b", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }'Use Docker
docker model run hf.co/Dexy2/Piko-9b
- SGLang
How to use Dexy2/Piko-9b 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 "Dexy2/Piko-9b" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Dexy2/Piko-9b", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }'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 "Dexy2/Piko-9b" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Dexy2/Piko-9b", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }' - Docker Model Runner
How to use Dexy2/Piko-9b with Docker Model Runner:
docker model run hf.co/Dexy2/Piko-9b
File size: 2,958 Bytes
0810902 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 | """Shared fixtures.
Tests are split into two tiers:
* **Fast tests** parse configuration, tokenizer files, and the chat template. They
need no weights and no GPU, so they are safe for CI on every commit.
* **Heavy tests** load the 9.65 B checkpoint. They are marked ``slow`` and skipped
unless ``PIKO_MODEL_PATH`` points at a local checkpoint or Hub id.
Set ``PIKO_CONFIG_PATH`` to a directory holding just the small json/jinja files to
run the fast tier against a checkout that has no weights.
"""
from __future__ import annotations
import json
import os
from pathlib import Path
import pytest
REPO_ROOT = Path(__file__).resolve().parents[1]
FIXTURES = REPO_ROOT / "tests" / "fixtures"
def pytest_configure(config: pytest.Config) -> None:
config.addinivalue_line("markers", "slow: requires the full checkpoint and a GPU")
@pytest.fixture(scope="session")
def config_dir() -> Path:
"""Directory containing config.json and tokenizer files."""
for candidate in (
os.environ.get("PIKO_CONFIG_PATH"),
os.environ.get("PIKO_MODEL_PATH"),
):
if candidate and (Path(candidate) / "config.json").is_file():
return Path(candidate)
if (FIXTURES / "config.json").is_file():
return FIXTURES
pytest.skip("No config directory: set PIKO_CONFIG_PATH or PIKO_MODEL_PATH")
@pytest.fixture(scope="session")
def model_config(config_dir: Path) -> dict:
return json.loads((config_dir / "config.json").read_text(encoding="utf-8"))
@pytest.fixture(scope="session")
def model_path() -> str:
path = os.environ.get("PIKO_MODEL_PATH")
if not path:
pytest.skip("PIKO_MODEL_PATH is not set; skipping tests that load weights")
return path
@pytest.fixture(scope="session")
def loaded_model(model_path: str):
"""Load the checkpoint once for the whole slow tier."""
torch = pytest.importorskip("torch")
if not torch.cuda.is_available():
pytest.skip("CUDA is required: CPU offload corrupts this architecture")
pytest.importorskip("bitsandbytes")
from transformers import AutoModelForMultimodalLM, AutoProcessor, BitsAndBytesConfig
model = AutoModelForMultimodalLM.from_pretrained(
model_path,
dtype=torch.bfloat16,
device_map={"": 0},
quantization_config=BitsAndBytesConfig(
load_in_4bit=True,
bnb_4bit_quant_type="nf4",
bnb_4bit_compute_dtype=torch.bfloat16,
bnb_4bit_use_double_quant=True,
),
)
model.eval()
processor = AutoProcessor.from_pretrained(model_path)
return model, processor
@pytest.fixture(scope="session")
def receipt_image(tmp_path_factory: pytest.TempPathFactory) -> Path:
"""A deterministic rendered receipt, built without touching the network."""
from evaluation.custom_suite.build_assets import receipt # type: ignore
path = tmp_path_factory.mktemp("assets") / "receipt.png"
receipt(path)
return path
|