AIFunOver commited on
Commit
4352f57
·
verified ·
1 Parent(s): 180bcc8

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: Krystalan/DRT-o1-7B
3
+ language:
4
+ - en
5
+ - zh
6
+ license: cc-by-nc-sa-4.0
7
+ pipeline_tag: text-generation
8
+ tags:
9
+ - machine tranlsation
10
+ - O1-like model
11
+ - Chat
12
+ - openvino
13
+ - nncf
14
+ - fp16
15
+ ---
16
+
17
+ This model is a quantized version of [`Krystalan/DRT-o1-7B`](https://huggingface.co/Krystalan/DRT-o1-7B) 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/DRT-o1-7B-openvino-fp16"
26
+ model = OVModelForCausalLM.from_pretrained(model_id)
27
+ ```