sail
/

Text Generation
Transformers
Safetensors
7 languages
qwen2
multilingual
sea
sailor
conversational
text-generation-inference
dreamerdeo commited on
Commit
b519b29
1 Parent(s): 7a6ad21

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +109 -0
README.md ADDED
@@ -0,0 +1,109 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ - zh
5
+ - id
6
+ - th
7
+ - vi
8
+ - ms
9
+ - lo
10
+ datasets:
11
+ - cerebras/SlimPajama-627B
12
+ - Skywork/SkyPile-150B
13
+ - allenai/MADLAD-400
14
+ - cc100
15
+ tags:
16
+ - multilingual
17
+ - sea
18
+ - sailor
19
+ license: apache-2.0
20
+ base_model: Qwen/Qwen1.5-14B
21
+ inference: false
22
+ ---
23
+
24
+ <div align="center">
25
+ <img src="banner_sailor.jpg" width="700"/>
26
+ </div>
27
+
28
+ Sailor is a suite of Open Language Models tailored for South-East Asia (SEA), focusing on languages such as 🇮🇩Indonesian, 🇹🇭Thai, 🇻🇳Vietnamese, 🇲🇾Malay, and 🇱🇦Lao.
29
+ Developed with careful data curation, Sailor models are designed to understand and generate text across diverse linguistic landscapes of SEA region.
30
+ Built from [Qwen 1.5](https://huggingface.co/collections/Qwen/qwen15-65c0a2f577b1ecb76d786524) , Sailor encompasses models of varying sizes, spanning from 0.5B to 14B versions for different requirements.
31
+ We further fine-tune the base model with open-source datasets to get instruction-tuned models, namedly Sailor-Chat.
32
+ Benchmarking results demonstrate Sailor's proficiency in tasks such as question answering, commonsense reasoning, and other tasks in SEA languages.
33
+
34
+ > The logo was generated by MidJourney
35
+
36
+ ## Model Summary
37
+ - **Model Collections:** [Base Model & Chat Model](https://huggingface.co/collections/sail/sailor-65e19a749f978976f1959825)
38
+ - **Project Website:** [sailorllm.github.io](https://sailorllm.github.io/)
39
+ - **Codebase:** [github.com/sail-sg/sailor-llm](https://github.com/sail-sg/sailor-llm)
40
+ - **Technical Report:** [arxiv.org/pdf/2404.03608.pdf](https://arxiv.org/pdf/2404.03608.pdf)
41
+
42
+
43
+ ## Training details
44
+ Sailor is crafted by continually pre-training from language models like the remarkable Qwen 1.5 models, which already has a great performance on SEA languages.
45
+ The pre-training corpus heavily leverages the publicly available corpus, including
46
+ [SlimPajama](https://huggingface.co/datasets/cerebras/SlimPajama-627B),
47
+ [SkyPile](https://huggingface.co/datasets/Skywork/SkyPile-150B),
48
+ [CC100](https://huggingface.co/datasets/cc100) and [MADLAD-400](https://huggingface.co/datasets/allenai/MADLAD-400).
49
+
50
+ By employing aggressive data deduplication and careful data cleaning on the collected corpus, we have attained a high-quality dataset spanning various languages.
51
+ Through systematic experiments to determine the weights of different languages, Sailor models undergo training from 200B to 400B tokens, tailored to different model sizes.
52
+ The approach boosts their performance on SEA languages while maintaining proficiency in English and Chinese without significant compromise.
53
+ Finally, we continually pre-train the Qwen1.5-0.5B model with 400 Billion tokens, and other models with 200 Billion tokens to obtain the Sailor models.
54
+
55
+ ## Requirements
56
+ The code of Sailor has been in the latest Hugging face transformers and we advise you to install `transformers>=4.37.0`.
57
+
58
+ ## Quickstart
59
+
60
+ Here provides a code snippet to show you how to load the tokenizer and model and how to generate contents.
61
+
62
+ ```python
63
+ from transformers import AutoModelForCausalLM, AutoTokenizer
64
+ device = "cuda" # the device to load the model
65
+
66
+ model = AutoModelForCausalLM.from_pretrained("sail/Sailor-14B", device_map="auto")
67
+ tokenizer = AutoTokenizer.from_pretrained("sail/Sailor-14B")
68
+
69
+ input_message = "Model bahasa adalah model probabilistik"
70
+ ### The given Indonesian input translates to 'A language model is a probabilistic model of.'
71
+
72
+ model_inputs = tokenizer([input_message], return_tensors="pt").to(device)
73
+
74
+ generated_ids = model.generate(
75
+ model_inputs.input_ids,
76
+ max_new_tokens=64
77
+ )
78
+
79
+ generated_ids = [
80
+ output_ids[len(input_ids):] for input_ids, output_ids in zip(model_inputs.input_ids, generated_ids)
81
+ ]
82
+
83
+ response = tokenizer.batch_decode(generated_ids, skip_special_tokens=True)[0]
84
+ print(response)
85
+ ```
86
+
87
+ # License
88
+
89
+ Sailor is distributed under the terms of the Apache License 2.0.
90
+ No restrict on the research and the commercial use, but should comply with the [Qwen License](https://huggingface.co/Qwen/Qwen1.5-1.8B/blob/main/LICENSE).
91
+
92
+ ## Citation
93
+
94
+ If you find sailor useful, please cite our work as follows:
95
+
96
+ ```
97
+ @misc{dou2024sailor,
98
+ title={Sailor: Open Language Models for South-East Asia},
99
+ author={Longxu Dou and Qian Liu and Guangtao Zeng and Jia Guo and Jiahui Zhou and Wei Lu and Min Lin},
100
+ year={2024},
101
+ eprint={2404.03608},
102
+ archivePrefix={arXiv},
103
+ primaryClass={cs.CL}
104
+ }
105
+ ```
106
+
107
+ # Contact Us
108
+
109
+ If you have any questions, please raise an issue or contact us at [doulx@sea.com](mailto:doulx@sea.com) or [liuqian@sea.com](mailto:liuqian@sea.com).