AIFunOver commited on
Commit
4eb6370
·
verified ·
1 Parent(s): 24846a5

Upload README.md with huggingface_hub

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