The fine-tuning process involved lightweight QLoRA-based training on synthetic parallel examples from the Tweet Taglish dataset, following structured chat-style instruction tuning.
This model is intended for research, experimentation, and development of machine translation systems that support bilingual or code-switched output. It is particularly suited for:
1from transformers import AutoTokenizer, AutoModelForCausalLM
2
3tokenizer = AutoTokenizer.from_pretrained("your-hf-username/sea-lion-taglish")
4model = AutoModelForCausalLM.from_pretrained("your-hf-username/sea-lion-taglish")
5
6prompt = "Translate to Tagalog-English code-switching: I need to go shopping later."
7inputs = tokenizer(prompt, return_tensors="pt")
8output = model.generate(**inputs, max_new_tokens=100)
9print(tokenizer.decode(output[0], skip_special_tokens=True))
10
@misc{puopolo2025taglish,
author = {Charlotte Puopolo},
title = {Analyzing LLM Performance on Taglish Translation},
year = {2025},
note = {Hugging Face Model Repository},
url = {
https://huggingface.co/charlottepuopolo/sealion-3v-9b-it-taglish}
}