Qubitium's picture
Update README.md
5b77dde verified
---
license: apache-2.0
license_link: https://huggingface.co/Qwen/QwQ-32B/blob/main/LICENSE
language:
- en
base_model:
- Qwen/QwQ-32B
pipeline_tag: text-generation
tags:
- gptqmodel
- modelcloud
- chat
- qwen2
- qwq
- instruct
- int4
- gptq
- 4bit
---
![image/png](https://cdn-uploads.huggingface.co/production/uploads/6385c1c6de54faafdea4c19e/5PofuBo0ZQWZIaGnd3cVT.png)
This model has been quantized using [GPTQModel](https://github.com/ModelCloud/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**:
- **quantizer**: gptqmodel:2.0.0
- **uri**: https://github.com/modelcloud/gptqmodel
- **damp_percent**: 0.1
- **damp_auto_increment**: 0.0025
## Example:
```python
from transformers import AutoTokenizer
from gptqmodel import GPTQModel
tokenizer = AutoTokenizer.from_pretrained("ModelCloud/QwQ-32B-gptqmodel-4bit-vortex-v1")
model = GPTQModel.load("ModelCloud/QwQ-32B-gptqmodel-4bit-vortex-v1")
messages = [
{"role": "user", "content": "How many r's are in the word \"strawberry\""},
]
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)
```