oooOOoOo1 commited on
Commit
324a19a
·
verified ·
1 Parent(s): a78b853

Upload README.md with huggingface_hub

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