Image-Text-to-Text
Transformers
Safetensors
PyTorch
English
Korean
qwen3_5
qwen3.8
multimodal
vision-language-model
quantization
post-training-quantization
warpquant
llm
conversational
Instructions to use HarimxChoi/WarpQuant-Qwen3.8-27B-R16E4H4 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use HarimxChoi/WarpQuant-Qwen3.8-27B-R16E4H4 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-text-to-text", model="HarimxChoi/WarpQuant-Qwen3.8-27B-R16E4H4") 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("HarimxChoi/WarpQuant-Qwen3.8-27B-R16E4H4") model = AutoModelForMultimodalLM.from_pretrained("HarimxChoi/WarpQuant-Qwen3.8-27B-R16E4H4", 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 HarimxChoi/WarpQuant-Qwen3.8-27B-R16E4H4 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "HarimxChoi/WarpQuant-Qwen3.8-27B-R16E4H4" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "HarimxChoi/WarpQuant-Qwen3.8-27B-R16E4H4", "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/HarimxChoi/WarpQuant-Qwen3.8-27B-R16E4H4
- SGLang
How to use HarimxChoi/WarpQuant-Qwen3.8-27B-R16E4H4 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 "HarimxChoi/WarpQuant-Qwen3.8-27B-R16E4H4" \ --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": "HarimxChoi/WarpQuant-Qwen3.8-27B-R16E4H4", "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 "HarimxChoi/WarpQuant-Qwen3.8-27B-R16E4H4" \ --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": "HarimxChoi/WarpQuant-Qwen3.8-27B-R16E4H4", "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 HarimxChoi/WarpQuant-Qwen3.8-27B-R16E4H4 with Docker Model Runner:
docker model run hf.co/HarimxChoi/WarpQuant-Qwen3.8-27B-R16E4H4
Commit History
docs: model card 637a1f7 verified
Upload folder using huggingface_hub 4d3024f verified
Harim Choi commited on
Upload experiment/r16e4h4-text-payload.json with huggingface_hub 3b687d7 verified
Harim Choi commited on
Upload experiment/r16e4h4-k4v4r128-a8.json with huggingface_hub c0c8bed verified
Harim Choi commited on
Upload experiment/r16e4h4-a8.json with huggingface_hub b4091be verified
Harim Choi commited on
Upload experiment/r16e4h4-k4v4r128.json with huggingface_hub 5b79a4f verified
Harim Choi commited on
Upload experiment/r16e4h4-weight-only.json with huggingface_hub 196f4f3 verified
Harim Choi commited on
Upload experiment/r16e4h4-ppl.json with huggingface_hub d8c2854 verified
Harim Choi commited on
Upload experiment/base-ppl.json with huggingface_hub 5f505dc verified
Harim Choi commited on
Upload experiment/bf16-ppl.json with huggingface_hub b722141 verified
Harim Choi commited on
Upload experiment/post-sha256.txt with huggingface_hub 196d335 verified
Harim Choi commited on
Upload experiment/core-sha256.txt with huggingface_hub 2b233de verified
Harim Choi commited on
Upload experiment/output-fisher-selection.json with huggingface_hub 9f6ddb4 verified
Harim Choi commited on
Upload experiment/manifest.json with huggingface_hub 1479acc verified
Harim Choi commited on
Upload experiment/tqi3_fake_quant.json with huggingface_hub 8b2a50f verified
Harim Choi commited on
Upload experiment/selection-manifest.json with huggingface_hub e0ebda4 verified
Harim Choi commited on
Upload README.md with huggingface_hub 66553af verified
Harim Choi commited on
Add files using upload-large-folder tool f9e0eab verified
Harim Choi commited on
initial commit a393caf verified
Harim Choi commited on