SEA-Safeguard is a collection of safety-focused Large Language Models (LLMs) built upon the SEA-LION family, designed specifically for the Southeast Asia (SEA) region.
Model Details
Model Description
SEA-LION stands for Southeast Asian Languages In One Network and is a collection of Large Language Models (LLMs) which have been pretrained and instruct-tuned for the Southeast Asia (SEA) region.
This model is a fine-tuned version of aisingapore/Llama-SEA-LION-v3-8B-IT on 1M instruction-following pairs.
For more details on training data, please refer to the paper SEA-Guard.
For tokenization, the model employs the default tokenizer used in Llama 3.1.
Developed by: AI Products Pillar, AI Singapore
Funded by: Singapore NRF
Shared by: AI Products Pillar, AI Singapore
Model type: Decoder
Context length: 128k tokens
Language(s): Burmese, English, Indonesian, Malay, Tagalog, Tamil, Thai, and Vietnamese
This model is optimized to return a binary classification in text form: ["safe", "unsafe"].
However, users must be aware that the model is subject to the limitations common to generative AI,
including the potential to hallucinate or generate ungrounded, irrelevant text.
Due to these inherent risks, human oversight is advised, and the model’s outputs should not be treated as absolute determinations without secondary verification.
Uses
Direct Use
The output of the model is only "safe" or "unsafe". Users can directly use it without any finetune or in-context learning since it is already trained with cultural safety for SEA contexts.
Downstream Use
This model is supported by vLLM for fast inference.
How to Get Started with the Model
Use the code below to get started with the model. Please note that you need to use the example prompt for the prompt or response classification.
python
1import transformers
2import torch
34model_id ="aisingapore/Llama-SEA-Guard-8B-2602"56pipeline = transformers.pipeline(7"text-generation",8 model=model_id,9 model_kwargs={"torch_dtype": torch.bfloat16},10 device_map="auto",11)1213text ="Why Thai people is so lazy?"14prompt =f"You are a classifier for analyzing interactions between humans and LLMs. Given a request from a human user and a response from an LLM assistant, determine whether the human user's request is safe or unsafe.\nHuman user: {text}"1516## In case of response classification17## user_prompt = "Why Thai people is so good at math?"18## ai_response = "This is because the fact is not true"19## prompt = f"You are a classifier for analyzing interactions between humans and LLMs. Given a request from a human user and a response from an LLM assistant, determine whether the AI assistant's response is safe or unsafe.\nHuman user:{user_prompt}\nAI assistant:{ai_response}"20## Final out: Unsafe. Although the prompt is safe, but the response is unsafe. So, the final prediction will be "unsafe"212223messages =[24{"role":"user","content": prompt},25]2627outputs = pipeline(28 messages,29 max_new_tokens=256,30)31print(text,outputs[0]["generated_text"][-1])3233text ="Why Thai people is so good at math?"34prompt =f"You are a classifier for analyzing interactions between humans and LLMs. Given a request from a human user and a response from an LLM assistant, determine whether the human user's request is safe or unsafe.\nHuman user: {text}"353637messages =[38{"role":"user","content": prompt},39]4041outputs = pipeline(42 messages,43 max_new_tokens=256,44)45print(text,outputs[0]["generated_text"][-1])46
Training and evaluation data
For more details on training data, please refer to the paper SEA-Guard.
Training procedure
We employ a supervised-finetuning technique (SFT) on Llama-factory with the following hyperparameters.
Training hyperparameters
The following hyperparameters were used during training:
AUPRC is the primary metric to evaluate the safety classification of our models.
Results
Result
Technical Specifications
Software Environment & Requirements
Library
Version
Transformers
4.57.1
PyTorch
2.7.1
deepspeed
0.15.4
accelerate
1.7.0
llamafactory
0.9.4.dev0
Citation
BibTeX:
@misc{tasawong2026seaguardculturallygroundedmultilingual,
title={SEA-Guard: Culturally Grounded Multilingual Safeguard for Southeast Asia},
author={Panuthep Tasawong and Jian Gang Ngui and Alham Fikri Aji and Trevor Cohn and Peerat Limkonchotiwat},
year={2026},
eprint={2602.01618},
archivePrefix={arXiv},
primaryClass={cs.CL},
url={https://arxiv.org/abs/2602.01618},
}
More Information
This is the repository for the commercial instruction-tuned model.
Notwithstanding the model's safety-aligned training, developers and users are advised to conduct their own safety fine-tuning and implement appropriate security measures.
In no event shall the authors be held liable for any claims, damages, or other liabilities arising from the use of the released weights and codes.
AI Singapore is a national programme supported by the National Research Foundation, Singapore and hosted by the National University of Singapore.
Any opinions, findings and conclusions or recommendations expressed in this material are those of the author(s) and do not reflect the views of the National Research Foundation or the National University of Singapore.
Ahmed Dabeer, Ahn Jeongmi, Antonyrex Sajeban, Chan Hok Teng Adwin, Cheng Zi Yi Nicholas, Choa Hsueh Mei Esther, Heng Jonathan, Huang Yuli,
Jann Railey Estrada Montalan, Lee Chwan Ren, Leong Wai Yi, Leong Wei Qi, Liew Rachel,
Limkonchotiwat Peerat, Muhammad Ridzuan Bin Mokhtar, Nagarajan Karthik, Ng Boon Cheong Raymond, Ngee Chia Tai,
Ngui Jian Gang, Nguyen Thanh Ngan, Ong Tat-Wee David, Ong Zhi Hao, Pereira Mark, Poon Joseph, Rengarajan Hamsawardhini, Siow Wei Kang Bryan,
Susanto Yosephine, Sutaveephamochanon Anocha, Tan Choon Meng, Tan Chor Phin Evelyn, Tan Siao Wei Jessica, Tan Yixian, Tasawong Panuthep (VISTEC), Tee Jun Yun,
Teng Kok Wai Walter, Teo Eng Sipp Leslie, Tjhi William, Wu Donghang, Yeo Yeow Tong, Yong Xianbin, Zhang Zhou
Acknowledgement
This project is supported by the National Research Foundation Singapore and Infocomm Media Development Authority (IMDA), Singapore under its National Large Language Model Funding Initiative.