piimaila commited on
Commit
f7cc2e6
·
verified ·
1 Parent(s): 6b59f4d

Upload README.md with huggingface_hub

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