jackJessada's picture
Create README.md (#1)
8668863 verified
|
raw
history blame
5.11 kB
metadata
license: apache-2.0
language:
  - th
  - en
  - zh
library_name: transformers
pipeline_tag: text-generation
tags:
  - text-generation-inference
  - climate
  - finance
  - biology
  - chemistry
  - medical
  - code
  - legal

OpenThaiLLM-DoodNiLT-Instruct: Thai & China Large Language Model (Instruct)

OpenThaiLLM-DoodNiLT-Instruct is an 7 billion parameter instruct model designed for Thai 🇹🇭 & China 🇨🇳 language. 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), constrained generation, and reasoning tasks.is a Thai 🇹🇭 & China 🇨🇳 large language model with 7 billion parameters, and it is based on Qwen2-7B.

Introduction

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.

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.

Qwen2-7B-Instruct supports a context length of up to 131,072 tokens, enabling the processing of extensive inputs. Please refer to this section for detailed instructions on how to deploy Qwen2 for handling long texts.

For more details, please refer to our blog, GitHub, and Documentation.

Model Details

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.

Training details

We pretrained the models with a large amount of data, and we post-trained the models with both supervised finetuning and direct preference optimization.

Requirements

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:

KeyError: 'qwen2'

Implementation

Here provides a code snippet with apply_chat_template to show you how to load the tokenizer and model and how to generate contents.

from transformers import AutoModelForCausalLM, AutoTokenizer
device = "cuda" # the device to load the model onto

model = AutoModelForCausalLM.from_pretrained(
    "nectec/OpenThaiLLM-DoodNiLT-V1.0.0-Beta-7B-Instruct",
    torch_dtype="auto",
    device_map="auto"
)
tokenizer = AutoTokenizer.from_pretrained("nectec/OpenThaiLLM-DoodNiLT-V1.0.0-Beta-7B-Instruct")

prompt = "บริษัท A มีต้นทุนคงที่ 100,000 บาท และต้นทุนผันแปรต่อหน่วย 50 บาท ขายสินค้าได้ในราคา 150 บาทต่อหน่วย ต้องขายสินค้าอย่างน้อยกี่หน่วยเพื่อให้ถึงจุดคุ้มทุน?"
messages = [
    {"role": "system", "content": "คุณคือ DoodNiLT Assistant จงตอบคำถามอธิบายเป็นภาษาไทย"},
    {"role": "user", "content": prompt}
]
text = tokenizer.apply_chat_template(
    messages,
    tokenize=False,
    add_generation_prompt=True
)
model_inputs = tokenizer([text], return_tensors="pt").to(model.device)

generated_ids = model.generate(
    model_inputs.input_ids,
    max_new_tokens=4096,
    repetition_penalty=1.2
)
response = tokenizer.batch_decode(generated_ids, skip_special_tokens=True)[0]
print(response)

Evaluation Performance Few-shot (5 shot)

Model ONET IC TGAT TPAT-1 A-Level Average (ThaiExam) M3Exam (1 shot) MMLU
DoodNiLT-7B 0.5185 0.6421 0.6461 0.4224 0.3937 0.5245 0.5355 0.6644
llama-3-typhoon-v1.5-8b 0.3765 0.3473 0.5538 0.4137 0.2913 0.3965 0.4312 0.6451
OpenThaiGPT-1.0.0-7B 0.3086 0.3052 0.4153 0.3017 0.2755 0.3213 0.255 0.3512
Meta-Llama-3.1-8B 0.3641 0.2631 0.2769 0.3793 0.1811 0.2929 0.4239 0.6591
SeaLLM-v3-7B 0.4753 0.6421 0.6153 0.3275 0.3464 0.4813 0.4907 0.7037

Evaluation Performance Few-shot (2 shot)

Citation

If you find our work helpful, feel free to give us a cite.

@article{qwen2,
  title={Qwen2 Technical Report},
  year={2024}
}