Improve language tag
Browse filesHi! 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.
README.md
CHANGED
|
@@ -1,24 +1,36 @@
|
|
| 1 |
-
---
|
| 2 |
-
license: apache-2.0
|
| 3 |
-
language:
|
| 4 |
-
-
|
| 5 |
-
|
| 6 |
-
-
|
| 7 |
-
|
| 8 |
-
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
-
|
| 15 |
-
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
|
| 21 |
-
|
| 22 |
-
|
| 23 |
-
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")
|