AIFunOver commited on
Commit
66e315a
1 Parent(s): 2b98bfe

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +26 -0
README.md ADDED
@@ -0,0 +1,26 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: Qwen/QwQ-32B-Preview
3
+ language:
4
+ - en
5
+ library_name: transformers
6
+ license: apache-2.0
7
+ license_link: https://huggingface.co/Qwen/QwQ-32B-Preview/blob/main/LICENSE
8
+ tags:
9
+ - chat
10
+ - openvino
11
+ - nncf
12
+ - 4-bit
13
+ base_model_relation: quantized
14
+ ---
15
+
16
+ This model is a quantized version of [`Qwen/QwQ-32B-Preview`](https://huggingface.co/Qwen/QwQ-32B-Preview) and is converted to the OpenVINO format. This model was obtained via the [nncf-quantization](https://huggingface.co/spaces/echarlaix/nncf-quantization) space with [optimum-intel](https://github.com/huggingface/optimum-intel).
17
+ First make sure you have `optimum-intel` installed:
18
+ ```bash
19
+ pip install optimum[openvino]
20
+ ```
21
+ To load your model you can do as follows:
22
+ ```python
23
+ from optimum.intel import OVModelForCausalLM
24
+ model_id = "AIFunOver/QwQ-32B-Preview-openvino-4bit"
25
+ model = OVModelForCausalLM.from_pretrained(model_id)
26
+ ```