🚀 QuantFactory/Sailor2-L-8B-Chat-GGUF
This is a quantized version of the multilingual language model sail/Sailor2-L-8B-Chat, aiming to provide more efficient language processing capabilities for South - East Asia.

🚀 Quick Start
Prerequisites
The code of Sailor2 has been integrated into the latest Hugging Face transformers
library. We recommend you install transformers==4.46.3
.
Code Example
Here is a code snippet to demonstrate how to load the tokenizer and model, and generate text:
import torch
from transformers import AutoModelForCausalLM, AutoTokenizer
device = "cuda"
model = AutoModelForCausalLM.from_pretrained(
'sail/Sailor2-20B-Chat',
torch_dtype=torch.bfloat16,
device_map="auto"
)
tokenizer = AutoTokenizer.from_pretrained('sail/Sailor2-20B-Chat')
system_prompt= \
'You are an AI assistant named Sailor2, created by Sea AI Lab. \
As an AI assistant, you can answer questions in English, Chinese, and Southeast Asian languages \
such as Burmese, Cebuano, Ilocano, Indonesian, Javanese, Khmer, Lao, Malay, Sundanese, Tagalog, Thai, Vietnamese, and Waray. \
Your responses should be friendly, unbiased, informative, detailed, and faithful.'
prompt = "Beri saya pengenalan singkat tentang model bahasa besar."
messages = [
{"role": "system", "content": system_prompt},
{"role": "user", "content": prompt}
]
text = tokenizer.apply_chat_template(
messages,
tokenize=False,
add_generation_prompt=True
)
model_inputs = tokenizer([text], return_tensors="pt").to(device)
input_ids = model_inputs.input_ids.to(device)
generated_ids = model.generate(
input_ids,
max_new_tokens=512,
)
generated_ids = [
output_ids[len(input_ids):] for input_ids, output_ids in zip(model_inputs.input_ids, generated_ids)
]
response = tokenizer.batch_decode(generated_ids, skip_special_tokens=True)[0]
print(response)
✨ Features
- Multilingual Support: Supports 15 languages, including English, Chinese, and multiple Southeast Asian languages.
- Community - Driven: A community - driven initiative aiming to bring advanced multilingual language models to South - East Asia.
- Model Expansion: Comes in three sizes (1B, 8B, and 20B) expanded from the Qwen2.5 base models.
📦 Installation
The code of Sailor2 has been in the latest Hugging face transformers. You can install the required library by running the following command:
pip install transformers==4.46.3
📚 Documentation
Original Model Card
The logo was generated by MidJourney
Sailor2 is a community - driven initiative that brings cutting - edge multilingual language models to South - East Asia (SEA).
Our research highlights a strong demand for models in the 8B and 20B parameter range for production use, alongside 1B models for specialized applications,
such as speculative decoding and research purposes.
These models, released under the Apache 2.0 license, provide enhanced accessibility to advanced language technologies across the region.
Sailor2 builds upon the foundation of the awesome multilingual model Qwen 2.5 and
is continuously pre - trained on 500B tokens to support 15 languages better with a unified model.
These languages include English, Chinese, Burmese, Cebuano, Ilocano, Indonesian, Javanese, Khmer, Lao, Malay, Sundanese, Tagalog, Thai, Vietnamese, and Waray.
By addressing the growing demand for diverse, robust, and accessible language models, Sailor2 seeks to serve the underserved in SEA areas with open, inclusive, and accessible multilingual LLMs.
The Sailor2 model comes in three sizes, 1B, 8B, and 20B, which are expanded from the Qwen2.5 base models of 0.5B, 7B, and 14B, respectively.
Model Summary
- Model Collections: Base Model & Chat Model
- Project Website: [sea - sailor.github.io/blog/sailor2/](https://sea - sailor.github.io/blog/sailor2/)
- Codebase: [github.com/sail - sg/sailor2](https://github.com/sail - sg/sailor2)
- Technical Report: Sailor2 Report
Training details
During development, we employ a range of advanced technologies to ensure top - tier performance and efficiency:
- model expansion
- optimized data mixing strategies
- multi - stage pre - training protocols
- advanced multilingual post - training
Please refer to [Sailor2 Blog](https://sea - sailor.github.io/blog/sailor2/) for more training details.
🔧 Technical Details
The Sailor2 model is based on the Qwen 2.5 model and is expanded to different sizes. During the development process, advanced technologies such as model expansion, optimized data mixing strategies, multi - stage pre - training protocols, and advanced multilingual post - training are used to ensure its performance and efficiency.
📄 License
Sailor2 is distributed under the terms of the Apache License 2.0.
There is no restriction on research and commercial use.
📚 Citation
If you find Sailor2 useful, please cite our work as follows:
@article{sailor2report,
title = {Sailor2: Sailing in South - East Asia with Inclusive Multilingual LLM},
author = {Longxu Dou and Qian Liu and Fan Zhou and Changyu Chen and Zili Wang and Ziqi Jin and Zichen Liu and Tongyao Zhu and Cunxiao Du and Penghui Yang and Haonan Wang and Jiaheng Liu and Yongchi Zhao and Xiachong Feng and Xin Mao and Man Tsung Yeung and Kunat Pipatanakul and Fajri Koto and Min Si Thu and Hynek Kydl{\'\i}{\v{c}}ek and Zeyi Liu and Qunshu Lin and Sittipong Sripaisarnmongkol and Kridtaphad Sae - Khow and Nirattisai Thongchim and Taechawat Konkaew and Narong Borijindargoon and Anh Dao and Matichon Maneegard and Phakphum Artkaew and Zheng - Xin Yong and Quan Nguyen and Wannaphong Phatthiyaphaibun and Hoang H. Tran and Mike Zhang and Shiqi Chen and Tianyu Pang and Chao Du and Xinyi Wan and Wei Lu and Min Lin},
journal={arXiv preprint arXiv:2502.12982},
year = {2025}
}
📞 Contact Us
If you have any questions, please raise an issue or contact us at doulx@sea.com or liuqian.sea@gmail.com.
📋 Information Table
Property |
Details |
Model Type |
Quantized version of sail/Sailor2-L-8B-Chat |
Training Data |
500B tokens |
Supported Languages |
English, Chinese, Burmese, Cebuano, Ilocano, Indonesian, Javanese, Khmer, Lao, Malay, Sundanese, Tagalog, Thai, Vietnamese, Waray |
License |
Apache License 2.0 |
Base Model |
sail/Sailor2-L-8B |
Library Name |
transformers |
Pipeline Tag |
text - generation |
💡 Usage Examples
Example Title |
Prompt |
Chinese |
如何制作烤鱼? |
English |
How to bake fish? |
Malay |
Bagaimana cara memanggang ikan? |
Thai |
วิธีย่างปลา? |
Indonesian |
Bagaimana membuat bakaran ikan? |
Vietnamese |
Làm thế nào để nướng cá? |