windchant commited on
Commit
6698398
·
verified ·
1 Parent(s): ea21b5b

Upload README.md with huggingface_hub

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