riacheruvu commited on
Commit
d542259
1 Parent(s): 1f27ae2

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +29 -0
README.md ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: Qwen/Qwen2-7B-Instruct
3
+ language:
4
+ - en
5
+ license: apache-2.0
6
+ pipeline_tag: text-generation
7
+ tags:
8
+ - chat
9
+ - openvino
10
+ - nncf
11
+ - 4-bit
12
+ ---
13
+
14
+ This model is a quantized version of [`Qwen/Qwen2-7B-Instruct`](https://huggingface.co/Qwen/Qwen2-7B-Instruct) 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).
15
+
16
+ First make sure you have `optimum-intel` installed:
17
+
18
+ ```bash
19
+ pip install optimum[openvino]
20
+ ```
21
+
22
+ To load your model you can do as follows:
23
+
24
+ ```python
25
+ from optimum.intel import OVModelForCausalLM
26
+
27
+ model_id = "riacheruvu/Qwen2-7B-Instruct-openvino-4bit"
28
+ model = OVModelForCausalLM.from_pretrained(model_id)
29
+ ```