HelloSun commited on
Commit
8fae54d
1 Parent(s): a087c8d

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
+ base_model: Qwen/Qwen2.5-3B-Instruct
3
+ language:
4
+ - en
5
+ library_name: transformers
6
+ license: other
7
+ license_name: qwen-research
8
+ license_link: https://huggingface.co/Qwen/Qwen2.5-3B-Instruct/blob/main/LICENSE
9
+ pipeline_tag: text-generation
10
+ tags:
11
+ - chat
12
+ - openvino
13
+ - openvino-export
14
+ ---
15
+
16
+ This model was converted to OpenVINO from [`Qwen/Qwen2.5-3B-Instruct`](https://huggingface.co/Qwen/Qwen2.5-3B-Instruct) 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 = "HelloSun/Qwen2.5-3B-Instruct-openvino"
31
+ model = OVModelForCausalLM.from_pretrained(model_id)
32
+ ```