How to use from
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 "ModelCloud/QwQ-32B-Preview-gptqmodel-4bit-vortex-v1" \
    --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": "ModelCloud/QwQ-32B-Preview-gptqmodel-4bit-vortex-v1",
		"messages": [
			{
				"role": "user",
				"content": "What is the capital of France?"
			}
		]
	}'
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 "ModelCloud/QwQ-32B-Preview-gptqmodel-4bit-vortex-v1" \
        --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": "ModelCloud/QwQ-32B-Preview-gptqmodel-4bit-vortex-v1",
		"messages": [
			{
				"role": "user",
				"content": "What is the capital of France?"
			}
		]
	}'
Quick Links
🐛 Update: We have discovered a regression in the QwQ Vortext v1 model that may output extra strings such as "Edited Text" that was result of invalid calibration data auto-injected by our vortex pipeline.
Please use v2 of the model here: https://huggingface.co/ModelCloud/QwQ-32B-Preview-gptqmodel-4bit-vortex-v2

image/png

This model has been quantized using GPTQModel.

  • bits: 4
  • dynamic: null
  • group_size: 32
  • desc_act: true
  • static_groups: false
  • sym: true
  • lm_head: false
  • true_sequential: true
  • quant_method: "gptq"
  • checkpoint_format: "gptq"
  • meta

Example:

from transformers import AutoTokenizer
from gptqmodel import GPTQModel

tokenizer = AutoTokenizer.from_pretrained("ModelCloud/QwQ-32B-Preview-gptqmodel-4bit-vortex-v1")
model = GPTQModel.load("ModelCloud/QwQ-32B-Preview-gptqmodel-4bit-vortex-v1")

messages = [
    {"role": "system", "content": "You are Qwen, created by Alibaba Cloud. You are a helpful assistant."},
    {"role": "user", "content": "How can I design a data structure in C++ to store the top 5 largest integer numbers?"},
]
input_tensor = tokenizer.apply_chat_template(messages, add_generation_prompt=True, return_tensors="pt")

outputs = model.generate(input_ids=input_tensor.to(model.device), max_new_tokens=512)
result = tokenizer.decode(outputs[0][input_tensor.shape[1]:], skip_special_tokens=True)

print(result)
Downloads last month
23
Safetensors
Model size
33B params
Tensor type
BF16
·
I32
·
F16
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for ModelCloud/QwQ-32B-Preview-gptqmodel-4bit-vortex-v1

Base model

Qwen/Qwen2.5-32B
Quantized
(105)
this model

Collection including ModelCloud/QwQ-32B-Preview-gptqmodel-4bit-vortex-v1