AIFunOver commited on
Commit
d93aa6c
·
verified ·
1 Parent(s): 6d694cc

Upload README.md with huggingface_hub

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