paramedik commited on
Commit
b5d9732
·
verified ·
1 Parent(s): 006a646

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +32 -0
README.md ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - ru
4
+ datasets:
5
+ - IlyaGusev/saiga_scored
6
+ license: other
7
+ license_name: llama3
8
+ license_link: https://llama.meta.com/llama3/license/
9
+ base_model: IlyaGusev/saiga_llama3_8b
10
+ tags:
11
+ - openvino
12
+ - openvino-export
13
+ pipeline_tag: text-generation
14
+ ---
15
+
16
+ This model was converted to OpenVINO from [`IlyaGusev/saiga_llama3_8b`](https://huggingface.co/IlyaGusev/saiga_llama3_8b) using [optimum-intel](https://github.com/huggingface/optimum-intel)
17
+ via the [export](https://huggingface.co/spaces/echarlaix/openvino-export) space.
18
+
19
+ First make sure you have optimum-intel installed:
20
+
21
+ ```bash
22
+ pip install optimum[openvino]
23
+ ```
24
+
25
+ To load your model you can do as follows:
26
+
27
+ ```python
28
+ from optimum.intel import OVModelForCausalLM
29
+
30
+ model_id = "paramedik/saiga_llama3_8b-openvino"
31
+ model = OVModelForCausalLM.from_pretrained(model_id)
32
+ ```