Improve language tag
#1
by
lbourdois
- opened
README.md
CHANGED
@@ -1,27 +1,39 @@
|
|
1 |
-
---
|
2 |
-
base_model: Qwen/Qwen2.5-1.5B-Instruct
|
3 |
-
language:
|
4 |
-
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
-
|
11 |
-
-
|
12 |
-
-
|
13 |
-
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
base_model: Qwen/Qwen2.5-1.5B-Instruct
|
3 |
+
language:
|
4 |
+
- zho
|
5 |
+
- eng
|
6 |
+
- fra
|
7 |
+
- spa
|
8 |
+
- por
|
9 |
+
- deu
|
10 |
+
- ita
|
11 |
+
- rus
|
12 |
+
- jpn
|
13 |
+
- kor
|
14 |
+
- vie
|
15 |
+
- tha
|
16 |
+
- ara
|
17 |
+
library_name: transformers
|
18 |
+
license: apache-2.0
|
19 |
+
license_link: https://huggingface.co/Qwen/Qwen2.5-1.5B-Instruct/blob/main/LICENSE
|
20 |
+
pipeline_tag: text-generation
|
21 |
+
tags:
|
22 |
+
- chat
|
23 |
+
- openvino
|
24 |
+
- nncf
|
25 |
+
- 8-bit
|
26 |
+
base_model_relation: quantized
|
27 |
+
---
|
28 |
+
|
29 |
+
This model is a quantized version of [`Qwen/Qwen2.5-1.5B-Instruct`](https://huggingface.co/Qwen/Qwen2.5-1.5B-Instruct) 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).
|
30 |
+
First make sure you have `optimum-intel` installed:
|
31 |
+
```bash
|
32 |
+
pip install optimum[openvino]
|
33 |
+
```
|
34 |
+
To load your model you can do as follows:
|
35 |
+
```python
|
36 |
+
from optimum.intel import OVModelForCausalLM
|
37 |
+
model_id = "AIFunOver/Qwen2.5-1.5B-Instruct-openvino-8bit"
|
38 |
+
model = OVModelForCausalLM.from_pretrained(model_id)
|
39 |
+
```
|