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
| #!/usr/bin/env python3 | |
| """Produce a GPTQ build of Piko-9b. | |
| NOT RUN for this release. No GPTQ artefact has been produced or validated, and | |
| nothing in the documentation claims one works. | |
| Same two architecture-specific hazards as the AWQ path: | |
| 1. `A_log`, `dt_bias` and `conv1d` drive the linear-attention recurrent state and | |
| are not ordinary linear weights. Excluded by default. | |
| 2. GPTQ calibrates on text. Applying it to the vision tower can break image | |
| handling while text metrics stay healthy. The tower stays in bf16 by default. | |
| python scripts/quantize_gptq.py --model Dexy2/Piko-9b --output ./piko-9b-gptq | |
| Afterwards you MUST run: | |
| python scripts/validate_quantized_model.py --quantized ./piko-9b-gptq \ | |
| --reference Dexy2/Piko-9b --output reports/quantization_validation.json | |
| """ | |
| from __future__ import annotations | |
| import argparse | |
| import json | |
| import sys | |
| import time | |
| from pathlib import Path | |
| EXCLUDED_PATTERNS = [ | |
| "visual", | |
| "linear_attn.A_log", | |
| "linear_attn.dt_bias", | |
| "linear_attn.conv1d", | |
| "linear_attn.norm", | |
| "lm_head", | |
| ] | |
| CALIBRATION_PROMPTS = [ | |
| "Explain how a hash table resolves collisions.", | |
| "Summarise the causes of the 1929 financial crash.", | |
| "Write a Python function that merges two sorted lists.", | |
| "Describe the water cycle in four sentences.", | |
| "What is the difference between TCP and UDP?", | |
| "Extract the total from an invoice and return it as JSON.", | |
| "Explain gradient clipping and when it helps.", | |
| "Rewrite this sentence in the passive voice: The cat chased the mouse.", | |
| ] | |
| def build_calibration(tokenizer, samples: int, seq_len: int) -> list[dict]: | |
| """A small, self-contained calibration set: no dataset download, no licence question.""" | |
| texts = [] | |
| while len(texts) < samples: | |
| for prompt in CALIBRATION_PROMPTS: | |
| texts.append(prompt) | |
| if len(texts) >= samples: | |
| break | |
| return [ | |
| tokenizer(text, return_tensors="pt", truncation=True, max_length=seq_len) for text in texts | |
| ] | |
| def main() -> None: | |
| parser = argparse.ArgumentParser(description=__doc__) | |
| parser.add_argument("--model", required=True) | |
| parser.add_argument("--output", type=Path, required=True) | |
| parser.add_argument("--bits", type=int, default=4, choices=[2, 3, 4, 8]) | |
| parser.add_argument("--group-size", type=int, default=128) | |
| parser.add_argument("--damp-percent", type=float, default=0.01) | |
| parser.add_argument( | |
| "--desc-act", action="store_true", default=False, help="Better accuracy, slower inference." | |
| ) | |
| parser.add_argument("--calibration-samples", type=int, default=128) | |
| parser.add_argument("--sequence-length", type=int, default=2048) | |
| parser.add_argument( | |
| "--quantize-vision", | |
| action="store_true", | |
| help="Quantize the vision tower too. Unvalidated; expect image regressions.", | |
| ) | |
| parser.add_argument("--dry-run", action="store_true") | |
| args = parser.parse_args() | |
| excluded = list(EXCLUDED_PATTERNS) | |
| if args.quantize_vision: | |
| excluded.remove("visual") | |
| print( | |
| "WARNING: quantizing the vision tower with text calibration. " | |
| "Validate the image path before publishing.", | |
| file=sys.stderr, | |
| ) | |
| config = { | |
| "bits": args.bits, | |
| "group_size": args.group_size, | |
| "damp_percent": args.damp_percent, | |
| "desc_act": args.desc_act, | |
| "sym": True, | |
| "true_sequential": True, | |
| "modules_to_not_convert": excluded, | |
| } | |
| print("GPTQ configuration:") | |
| print(json.dumps(config, indent=2)) | |
| print(f"\nmodel : {args.model}") | |
| print(f"output : {args.output}") | |
| print(f"samples: {args.calibration_samples} @ {args.sequence_length} tokens") | |
| print("\nEstimated cost: 1-3 hours and >= 24 GB VRAM for a 9.65B model.") | |
| if args.dry_run: | |
| print("\n--dry-run: nothing executed.") | |
| return | |
| try: | |
| from gptqmodel import GPTQModel, QuantizeConfig | |
| except ImportError: | |
| sys.exit( | |
| "gptqmodel is not installed:\n" | |
| " pip install gptqmodel\n" | |
| "Note: gptqmodel support for the qwen3_5 hybrid architecture has NOT been " | |
| "verified. If it does not recognise the model type, this path is a dead end " | |
| "until upstream adds support." | |
| ) | |
| from transformers import AutoTokenizer | |
| tokenizer = AutoTokenizer.from_pretrained(args.model) | |
| calibration = build_calibration(tokenizer, args.calibration_samples, args.sequence_length) | |
| quantize_config = QuantizeConfig( | |
| bits=args.bits, | |
| group_size=args.group_size, | |
| damp_percent=args.damp_percent, | |
| desc_act=args.desc_act, | |
| ) | |
| print("\nLoading model...", flush=True) | |
| began = time.time() | |
| model = GPTQModel.load(args.model, quantize_config) | |
| print("Quantizing...", flush=True) | |
| model.quantize(calibration) | |
| args.output.mkdir(parents=True, exist_ok=True) | |
| model.save(str(args.output)) | |
| tokenizer.save_pretrained(str(args.output)) | |
| (args.output / "quantization_provenance.json").write_text( | |
| json.dumps( | |
| { | |
| "method": "gptq", | |
| "source_model": args.model, | |
| "config": config, | |
| "calibration_samples": args.calibration_samples, | |
| "calibration_source": "self-contained prompt list (no external dataset)", | |
| "vision_quantized": args.quantize_vision, | |
| "elapsed_seconds": round(time.time() - began, 1), | |
| "timestamp": time.strftime("%Y-%m-%dT%H:%M:%S%z"), | |
| "validated": False, | |
| }, | |
| indent=2, | |
| ) | |
| + "\n", | |
| encoding="utf-8", | |
| ) | |
| print(f"\nWrote {args.output}") | |
| print("NOT YET VALIDATED. Run scripts/validate_quantized_model.py before publishing.") | |
| if __name__ == "__main__": | |
| main() | |