Views
No views yet

<eos> token changed to <|im_end|>)Terms of Use and License: By using our released weights, codes, and demos, you agree to and comply with the terms and conditions specified in our SeaLLMs Terms Of Use.
Disclaimer: We must note that even though the weights, codes, and demos are released in an open manner, similar to other pre-trained language models, and despite our best efforts in red teaming and safety fine-tuning and enforcement, our models come with potential risks, including but not limited to inaccurate, misleading or potentially harmful generation. Developers and stakeholders should perform their own red teaming and provide related security measures before deployment, and they must abide by and comply with local governance and regulations. In no event shall the authors be held liable for any claim, damages, or other liability arising from the use of the released weights, codes, or demos.
The logo was generated by DALL-E 3.
| Model | Langs | En MMLU | En M3e | Zh M3e | Vi M3e | Vi VMLU | Id M3e | Th M3e |
|---|---|---|---|---|---|---|---|---|
| GPT-3.5 | Multi | 68.90 | 75.46 | 60.20 | 58.64 | 46.32 | 49.27 | 37.41 |
| Vistral-7B-chat | Mono | 56.86 | 67.00 | 44.56 | 54.33 | 50.03 | 36.49 | 25.27 |
| Qwen1.5-7B-chat | Multi | 61.00 | 52.07 | 81.96 | 43.38 | 45.02 | 24.29 | 20.25 |
| SailorLM | Multi | 52.72 | 59.76 | 67.74 | 50.14 | --- | 39.53 | 37.73 |
| SeaLLM-7B-v2 | Multi | 61.89 | 70.91 | 55.43 | 51.15 | 45.74 | 42.25 | 35.52 |
| SeaLLM-7B-v2.5 | Multi | 64.05 | 76.87 | 62.54 | 63.11 | 53.30 | 48.64 | 46.86 |
| Model | GSM8K en | MATH en | GSM8K zh | MATH zh | GSM8K vi | MATH vi | GSM8K id | MATH id | GSM8K th | MATH th |
|---|---|---|---|---|---|---|---|---|---|---|
| GPT-3.5 | 80.8 | 34.1 | 48.2 | 21.5 | 55 | 26.5 | 64.3 | 26.4 | 35.8 | 18.1 |
| Qwen-14B-chat | 61.4 | 18.4 | 41.6 | 11.8 | 33.6 | 3.6 | 44.7 | 8.6 | 22 | 6.0 |
| Vistral-7b-chat | 48.2 | 12.5 | 48.7 | 3.1 | ||||||
| Qwen1.5-7B-chat | 56.8 | 15.3 | 40.0 | 2.7 | 37.7 | 9 | 36.9 | 7.7 | 21.9 | 4.7 |
| SeaLLM-7B-v2 | 78.2 | 27.5 | 53.7 | 17.6 | 69.9 | 23.8 | 71.5 | 24.4 | 59.6 | 22.4 |
| SeaLLM-7B-v2.5 | 78.5 | 34.9 | 51.3 | 22.1 | 72.3 | 30.2 | 71.5 | 30.1 | 62.0 | 28.4 |
| Model | MGSM-Zh | MGSM-Th |
|---|---|---|
| ChatGPT (reported) | 61.2 | 47.2 |
| Qwen-14B-chat | 59.6 | 28 |
| SeaLLM-7B-v2 | 64.8 | 62.4 |
| SeaLLM-7B-v2.5 | 58.0 | 64.8 |

<bos> must be at start of prompt, ff your code's tokenizer does not prepend <bos> by default, you MUST prepend 1# ! WARNING, if your code's tokenizer does not prepend <bos> by default,
2# You MUST prepend <bos> into the prompt yourself, otherwise, it would not work!
3
4prompt = """<|im_start|>system
5You are a helpful assistant.<eos>
6<|im_start|>user
7Hello world<eos>
8<|im_start|>assistant
9Hi there, how can I help?<eos>"""
10
11# <|im_start|> is not a special token.
12# Transformers chat_template should be consistent with vLLM format below.
13
14# ! ENSURE 1 and only 1 bos `<bos>` at the beginning of sequence
15print(tokenizer.convert_ids_to_tokens(tokenizer.encode(prompt)))
16
17"""1
2from transformers import AutoModelForCausalLM, AutoTokenizer
3
4device = "cuda" # the device to load the model onto
5
6# use bfloat16 to ensure the best performance.
7model = AutoModelForCausalLM.from_pretrained("SeaLLMs/SeaLLM-7B-v2.5", torch_dtype=torch.bfloat16, device_map=device)
8tokenizer = AutoTokenizer.from_pretrained("SeaLLMs/SeaLLM-7B-v2.5")
9
10messages = [
11 {"role": "system", "content": "You are a helpful assistant."},
12 {"role": "user", "content": "Hello world"},
13 {"role": "assistant", "content": "Hi there, how can I help you today?"},
14 {"role": "user", "content": "Explain general relativity in details."}
15]
16
17encodeds = tokenizer.apply_chat_template(messages, return_tensors="pt", add_generation_prompt=True)
18print(tokenizer.convert_ids_to_tokens(encodeds[0]))
19
20model_inputs = encodeds.to(device)
21model.to(device)
22
23generated_ids = model.generate(model_inputs, max_new_tokens=1000, do_sample=True, pad_token_id=tokenizer.pad_token_id)
24decoded = tokenizer.batch_decode(generated_ids)
25print(decoded[0])
261from vllm import LLM, SamplingParams
2TURN_TEMPLATE = "<|im_start|>{role}\n{content}<eos>\n"
3TURN_PREFIX = "<|im_start|>{role}\n"
4
5def seallm_chat_convo_format(conversations, add_assistant_prefix: bool, system_prompt=None):
6 # conversations: list of dict with key `role` and `content` (openai format)
7 if conversations[0]['role'] != 'system' and system_prompt is not None:
8 conversations = [{"role": "system", "content": system_prompt}] + conversations
9 text = ''
10 for turn_id, turn in enumerate(conversations):
11 prompt = TURN_TEMPLATE.format(role=turn['role'], content=turn['content'])
12 text += prompt
13 if add_assistant_prefix:
14 prompt = TURN_PREFIX.format(role='assistant')
15 text += prompt
16 return text
17
18sparams = SamplingParams(temperature=0.1, max_tokens=1024, stop=['<eos>', '<|im_start|>'])
19llm = LLM("SeaLLMs/SeaLLM-7B-v2.5", dtype="bfloat16")
20
21message = "Explain general relativity in details."
22prompt = seallm_chat_convo_format(message, True)
23gen = llm.generate(prompt, sampling_params)
24
25print(gen[0].outputs[0].text)1conversations = [
2 {"role": "system", "content": "You are helful assistant."},
3 {"role": "user", "content": "Hello world."},
4 {"role": "assistant", "content": "Hi there, how can I help?"},
5 {"role": "user", "content": "Tell me a joke."},
6 {"role": "assistant", "content": "Why don't scientists trust atoms? Because they make up everything."},
7]
8def seallm_7b_v25_tokenize_multi_turns(tokenizer, conversations, add_assistant_prefix=False):
9 """
10 Inputs:
11 conversations: list of dict following openai format, eg
12 conversations = [
13 {"role": "system", "content": "You are helful assistant."},
14 {"role": "user", "content": "Hello world."},
15 {"role": "assistant", "content": "Hi there, how can I help?"},
16 {"role": "user", "content": "Tell me a joke."},
17 {"role": "assistant", "content": "Why don't scientists trust atoms? Because they make up everything."},
18 ]
19 add_assistant_prefix: whether to add assistant_prefix, only for inference decoding
20 Outputs:
21 tokenize_output_sample, {
22 "input_ids": ...
23 "token_type_ids": 1 if train and 0 if masked out (not train)
24 }
25 During training, need to create a labels, with masked-out tokens = -100 to avoid loss computations.
26 labels = sample['input_ids'].clone()
27 labels[sample['token_type_ids'] == 0] = -100
28 """
29 TURN_TEMPLATE = "<|im_start|>{role}\n{content}<eos>\n"
30 TURN_PREFIX = "<|im_start|>{role}\n"
31 TURN_SUFFIX = "<eos>\n"
32 TURN_SUFFIX_TAKE = "<eos>"
33 sample = None
34 assistant_prefix_len = None
35 assistant_suffix_len = None
36 for turn_id, turn in enumerate(conversations):
37 prompt = TURN_TEMPLATE.format(role=turn['role'], content=turn['content'])
38 turn_sample = tokenizer(
39 prompt, padding=False, truncation=False, verbose=False, add_special_tokens=False,
40 return_token_type_ids=True,
41 )
42 if turn['role'] == 'assistant':
43 if assistant_prefix_len is None:
44 assistant_prefix_len = len(tokenizer.encode(TURN_PREFIX.format(role=turn['role']), add_special_tokens=False))
45 if assistant_suffix_len is None:
46 assistant_suffix_len = (
47 len(tokenizer.encode(TURN_SUFFIX.format(role=turn['role']), add_special_tokens=False)) -
48 len(tokenizer.encode(TURN_SUFFIX_TAKE, add_special_tokens=False))
49 )
50 turn_sample['token_type_ids'][assistant_prefix_len:-assistant_suffix_len] = [1] * (len(turn_sample['input_ids']) - assistant_prefix_len - assistant_suffix_len)
51 if sample is None:
52 sample = turn_sample
53 else:
54 for k in turn_sample.keys():
55 sample[k].extend(turn_sample[k])
56 if add_assistant_prefix:
57 assistant_prefix_sample = tokenizer(
58 TURN_PREFIX.format(role="assistant"), padding=False, truncation=False, verbose=False, add_special_tokens=False,
59 return_token_type_ids=True,
60 )
61 for k in sample.keys():
62 sample[k].extend(assistant_prefix_sample[k])
63 if tokenizer.add_bos_token:
64 sample['input_ids'] = [tokenizer.bos_token_id] + sample['input_ids']
65 sample['attention_mask'] = [1] + sample['attention_mask']
66 sample['token_type_ids'] = [sample['token_type_ids'][0]] + sample['token_type_ids']
67 return sample
68
69# ! testing
70sample = seallm_7b_v25_tokenize_multi_turns(tokenizer, conversations)
71tokens = tokenizer.convert_ids_to_tokens(sample['input_ids'])
72pairs = [(x, y) for x, y in zip(tokens, sample['token_type_ids'])]
73print(pairs)
74
75# source and special tokens is masked out (token_type 0), only assistant with <eos> is trained (token_type 1)
76# [('<bos>', 0), ('<', 0), ('|', 0), ..., ('assistant', 0), ('\n', 0), ('Hi', 1), ('▁there', 1), (',', 1), ('▁how', 1), ('▁can', 1), ('▁I', 1), ('▁help', 1), ('?', 1), ('<eos>', 1), ('\n', 0), ('<', 0), ...
77* and ^ are equal contributions.@article{damonlpsg2023seallm,
author = {Xuan-Phi Nguyen*, Wenxuan Zhang*, Xin Li*, Mahani Aljunied*, Weiwen Xu, Hou Pong Chan,
Zhiqiang Hu, Chenhui Shen^, Yew Ken Chia^, Xingxuan Li, Jianyu Wang,
Qingyu Tan, Liying Cheng, Guanzheng Chen, Yue Deng, Sen Yang,
Chaoqun Liu, Hang Zhang, Lidong Bing},
title = {SeaLLMs - Large Language Models for Southeast Asia},
year = 2023,
Eprint = {arXiv:2312.00738},
}