lbourdois commited on
Commit
cf73807
·
verified ·
1 Parent(s): 68c4b22

Improve language tag

Browse files

Hi! As the model is multilingual, this is a PR to add other languages than English to the language tag to improve the referencing. Note that 29 languages are announced in the README, but only 13 are explicitly listed. I was therefore only able to add these 13 languages.

Files changed (1) hide show
  1. README.md +35 -23
README.md CHANGED
@@ -1,24 +1,36 @@
1
- ---
2
- license: apache-2.0
3
- language:
4
- - en
5
- base_model:
6
- - Qwen/Qwen2.5-0.5B-Instruct
7
- new_version: ShubhaLabs/quantized_qwen_model
8
- ---
9
- # Quantized Qwen Model
10
-
11
- This repository contains a quantized version of the Qwen model for causal language modeling.
12
-
13
- ## Model Details
14
- - **Model Type**: Qwen2ForCausalLM
15
- - **Quantization**: Dynamic Quantization
16
-
17
- ## Usage
18
- You can load this model using the Hugging Face Transformers library:
19
-
20
- ```python
21
- from transformers import AutoModelForCausalLM, AutoTokenizer
22
-
23
- model = AutoModelForCausalLM.from_pretrained("ShubhaLabs/quantized_qwen_model")
 
 
 
 
 
 
 
 
 
 
 
 
24
  tokenizer = AutoTokenizer.from_pretrained("ShubhaLabs/quantized_qwen_model")
 
1
+ ---
2
+ license: apache-2.0
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
+ base_model:
18
+ - Qwen/Qwen2.5-0.5B-Instruct
19
+ new_version: ShubhaLabs/quantized_qwen_model
20
+ ---
21
+ # Quantized Qwen Model
22
+
23
+ This repository contains a quantized version of the Qwen model for causal language modeling.
24
+
25
+ ## Model Details
26
+ - **Model Type**: Qwen2ForCausalLM
27
+ - **Quantization**: Dynamic Quantization
28
+
29
+ ## Usage
30
+ You can load this model using the Hugging Face Transformers library:
31
+
32
+ ```python
33
+ from transformers import AutoModelForCausalLM, AutoTokenizer
34
+
35
+ model = AutoModelForCausalLM.from_pretrained("ShubhaLabs/quantized_qwen_model")
36
  tokenizer = AutoTokenizer.from_pretrained("ShubhaLabs/quantized_qwen_model")