Image-Text-to-Text
Safetensors
English
Chinese
qwen3_5
unsloth
qwen
qwen3.5
reasoning
chain-of-thought
Dense
vLLM
SGLang
conversational
4-bit precision
gptq
Instructions to use Xingyu-Zheng/Qwopus3.5-9B-v3.5-INT4-FOEM with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Local Apps Settings
- vLLM
How to use Xingyu-Zheng/Qwopus3.5-9B-v3.5-INT4-FOEM with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Xingyu-Zheng/Qwopus3.5-9B-v3.5-INT4-FOEM" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Xingyu-Zheng/Qwopus3.5-9B-v3.5-INT4-FOEM", "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/Xingyu-Zheng/Qwopus3.5-9B-v3.5-INT4-FOEM
- SGLang
How to use Xingyu-Zheng/Qwopus3.5-9B-v3.5-INT4-FOEM 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 "Xingyu-Zheng/Qwopus3.5-9B-v3.5-INT4-FOEM" \ --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": "Xingyu-Zheng/Qwopus3.5-9B-v3.5-INT4-FOEM", "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 "Xingyu-Zheng/Qwopus3.5-9B-v3.5-INT4-FOEM" \ --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": "Xingyu-Zheng/Qwopus3.5-9B-v3.5-INT4-FOEM", "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" } } ] } ] }' - Unsloth Desktop
- Docker Model Runner
How to use Xingyu-Zheng/Qwopus3.5-9B-v3.5-INT4-FOEM with Docker Model Runner:
docker model run hf.co/Xingyu-Zheng/Qwopus3.5-9B-v3.5-INT4-FOEM
Update README.md
Browse files
README.md
CHANGED
|
@@ -21,6 +21,13 @@ datasets:
|
|
| 21 |
---
|
| 22 |
# 🌟Qwopus3.5-9B-v3.5-INT4-FOEM
|
| 23 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 24 |
This is an unofficial quantized version of Qwopus3.5-9B-v3.5.
|
| 25 |
|
| 26 |
### 🧠 Quantization Framework
|
|
|
|
| 21 |
---
|
| 22 |
# 🌟Qwopus3.5-9B-v3.5-INT4-FOEM
|
| 23 |
|
| 24 |
+
<div align="left">
|
| 25 |
+
<a href=https://ojs.aaai.org/index.php/AAAI/article/view/40123 target="_blank"><img src=https://img.shields.io/badge/Official%20Site-333399.svg?logo=homepage height=22px></a>
|
| 26 |
+
<a href=https://huggingface.co/Xingyu-Zheng/Qwopus3.5-9B-v3.5-INT4-FOEM target="_blank"><img src=https://img.shields.io/badge/%F0%9F%A4%97%20Models-d96902.svg height=22px></a>
|
| 27 |
+
<a href=https://github.com/Xingyu-Zheng/FOEM target="_blank"><img src= https://img.shields.io/badge/Page-bb8a2e.svg?logo=github height=22px></a>
|
| 28 |
+
<a href=https://arxiv.org/abs/2507.11017 target="_blank"><img src=https://img.shields.io/badge/Report-b5212f.svg?logo=arxiv height=22px></a>
|
| 29 |
+
</div>
|
| 30 |
+
|
| 31 |
This is an unofficial quantized version of Qwopus3.5-9B-v3.5.
|
| 32 |
|
| 33 |
### 🧠 Quantization Framework
|