Create README.md
#1
by
SuperkingbasSKB
- opened
README.md
ADDED
@@ -0,0 +1,103 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: apache-2.0
|
3 |
+
language:
|
4 |
+
- th
|
5 |
+
- en
|
6 |
+
- zh
|
7 |
+
library_name: transformers
|
8 |
+
pipeline_tag: text-generation
|
9 |
+
tags:
|
10 |
+
- text-generation-inference
|
11 |
+
- climate
|
12 |
+
- finance
|
13 |
+
- biology
|
14 |
+
- chemistry
|
15 |
+
- medical
|
16 |
+
- code
|
17 |
+
- legal
|
18 |
+
---
|
19 |
+
# OpenThaiLLM-DoodNiLT-Instruct: Thai & China Large Language Model (Instruct)
|
20 |
+
**OpenThaiLLM-DoodNiLT-Instruct** is an 7 billion parameter instruct model designed for Thai 🇹🇭 & China 🇨🇳 language.
|
21 |
+
It demonstrates competitive performance with GPT-3.5-turbo and llama-3-typhoon-v1.5-8b-instruct, and is optimized for application use cases, Retrieval-Augmented Generation (RAG),
|
22 |
+
constrained generation, and reasoning tasks.is a Thai 🇹🇭 & China 🇨🇳 large language model with 7 billion parameters, and it is based on Qwen2-7B.
|
23 |
+
## Introduction
|
24 |
+
|
25 |
+
Qwen2 is the new series of Qwen large language models. For Qwen2, we release a number of base language models and instruction-tuned language models ranging from 0.5 to 72 billion parameters, including a Mixture-of-Experts model. This repo contains the instruction-tuned 7B Qwen2 model.
|
26 |
+
|
27 |
+
Compared with the state-of-the-art opensource language models, including the previous released Qwen1.5, Qwen2 has generally surpassed most opensource models and demonstrated competitiveness against proprietary models across a series of benchmarks targeting for language understanding, language generation, multilingual capability, coding, mathematics, reasoning, etc.
|
28 |
+
|
29 |
+
Qwen2-7B-Instruct supports a context length of up to 131,072 tokens, enabling the processing of extensive inputs. Please refer to [this section](#processing-long-texts) for detailed instructions on how to deploy Qwen2 for handling long texts.
|
30 |
+
|
31 |
+
For more details, please refer to our [blog](https://qwenlm.github.io/blog/qwen2/), [GitHub](https://github.com/QwenLM/Qwen2), and [Documentation](https://qwen.readthedocs.io/en/latest/).
|
32 |
+
<br>
|
33 |
+
|
34 |
+
## Model Details
|
35 |
+
Qwen2 is a language model series including decoder language models of different model sizes. For each size, we release the base language model and the aligned chat model. It is based on the Transformer architecture with SwiGLU activation, attention QKV bias, group query attention, etc. Additionally, we have an improved tokenizer adaptive to multiple natural languages and codes.
|
36 |
+
|
37 |
+
## Training details
|
38 |
+
We pretrained the models with a large amount of data, and we post-trained the models with both supervised finetuning and direct preference optimization.
|
39 |
+
|
40 |
+
|
41 |
+
## Requirements
|
42 |
+
The code of Qwen2 has been in the latest Hugging face transformers and we advise you to install `transformers>=4.37.0`, or you might encounter the following error:
|
43 |
+
```
|
44 |
+
KeyError: 'qwen2'
|
45 |
+
```
|
46 |
+
|
47 |
+
## Implementation
|
48 |
+
|
49 |
+
Here provides a code snippet with `apply_chat_template` to show you how to load the tokenizer and model and how to generate contents.
|
50 |
+
|
51 |
+
```python
|
52 |
+
from transformers import AutoModelForCausalLM, AutoTokenizer
|
53 |
+
device = "cuda" # the device to load the model onto
|
54 |
+
|
55 |
+
model = AutoModelForCausalLM.from_pretrained(
|
56 |
+
"nectec/OpenThaiLLM-DoodNiLT-V1.0.0-Beta-7B-Instruct",
|
57 |
+
torch_dtype="auto",
|
58 |
+
device_map="auto"
|
59 |
+
)
|
60 |
+
tokenizer = AutoTokenizer.from_pretrained("nectec/OpenThaiLLM-DoodNiLT-V1.0.0-Beta-7B-Instruct")
|
61 |
+
|
62 |
+
prompt = "บริษัท A มีต้นทุนคงที่ 100,000 บาท และต้นทุนผันแปรต่อหน่วย 50 บาท ขายสินค้าได้ในราคา 150 บาทต่อหน่วย ต้องขายสินค้าอย่างน้อยกี่หน่วยเพื่อให้ถึงจุดคุ้มทุน?"
|
63 |
+
messages = [
|
64 |
+
{"role": "system", "content": "คุณคือ DoodNiLT Assistant จงตอบคำถามอธิบายเป็นภาษาไทย"},
|
65 |
+
{"role": "user", "content": prompt}
|
66 |
+
]
|
67 |
+
text = tokenizer.apply_chat_template(
|
68 |
+
messages,
|
69 |
+
tokenize=False,
|
70 |
+
add_generation_prompt=True
|
71 |
+
)
|
72 |
+
model_inputs = tokenizer([text], return_tensors="pt").to(model.device)
|
73 |
+
|
74 |
+
generated_ids = model.generate(
|
75 |
+
model_inputs.input_ids,
|
76 |
+
max_new_tokens=4096,
|
77 |
+
repetition_penalty=1.2
|
78 |
+
)
|
79 |
+
response = tokenizer.batch_decode(generated_ids, skip_special_tokens=True)[0]
|
80 |
+
print(response)
|
81 |
+
```
|
82 |
+
|
83 |
+
## Evaluation Performance Few-shot (5 shot)
|
84 |
+
| Model | ONET | IC | TGAT | TPAT-1 | A-Level | Average (ThaiExam) | M3Exam (1 shot) | MMLU |
|
85 |
+
| :--- | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: |
|
86 |
+
| DoodNiLT-7B | **0.5185** | **0.6421** | **0.6461** | **0.4224** | **0.3937** | **0.5245** | **0.5355** | 0.6644 |
|
87 |
+
| llama-3-typhoon-v1.5-8b | 0.3765 | 0.3473 | 0.5538 | 0.4137 | 0.2913 | 0.3965 | 0.4312 | 0.6451 |
|
88 |
+
| OpenThaiGPT-1.0.0-7B | 0.3086 | 0.3052 | 0.4153 | 0.3017 | 0.2755 | 0.3213 | 0.255 | 0.3512 |
|
89 |
+
| Meta-Llama-3.1-8B | 0.3641 | 0.2631 | 0.2769 | 0.3793 | 0.1811 | 0.2929 | 0.4239 | 0.6591 |
|
90 |
+
| SeaLLM-v3-7B | 0.4753 | 0.6421 | 0.6153 | 0.3275 | 0.3464 | 0.4813 | 0.4907 | ***0.7037*** |
|
91 |
+
|
92 |
+
## Evaluation Performance Few-shot (2 shot)
|
93 |
+
|
94 |
+
## Citation
|
95 |
+
|
96 |
+
If you find our work helpful, feel free to give us a cite.
|
97 |
+
|
98 |
+
```
|
99 |
+
@article{qwen2,
|
100 |
+
title={Qwen2 Technical Report},
|
101 |
+
year={2024}
|
102 |
+
}
|
103 |
+
```
|