boysbytes commited on
Commit
ebb680f
·
verified ·
1 Parent(s): 3f2873c

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: deepseek-ai/DeepSeek-R1-Distill-Qwen-1.5B
3
+ library_name: transformers
4
+ license: mit
5
+ tags:
6
+ - openvino
7
+ - nncf
8
+ - 8-bit
9
+ ---
10
+
11
+ This model is a quantized version of [`deepseek-ai/DeepSeek-R1-Distill-Qwen-1.5B`](https://huggingface.co/deepseek-ai/DeepSeek-R1-Distill-Qwen-1.5B) 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).
12
+
13
+ First make sure you have `optimum-intel` installed:
14
+
15
+ ```bash
16
+ pip install optimum[openvino]
17
+ ```
18
+
19
+ To load your model you can do as follows:
20
+
21
+ ```python
22
+ from optimum.intel import OVModelForCausalLM
23
+
24
+ model_id = "boysbytes/DeepSeek-R1-Distill-Qwen-1.5B-openvino-8bit"
25
+ model = OVModelForCausalLM.from_pretrained(model_id)
26
+ ```