Quantization made by Richard Erkhov.
The Simbolo's Myanmarsar-GPT (it is not a chatbot but a text generation model which can be used to develop chatbot) is pre-trained on a dataset of 20,000 Burmese data and pre-trained using the GPT-2 architecture of MGPT Model. Its purpose is to serve as a foundational pre-trained model for the Burmese language, facilitating fine-tuning for specific applications of different tasks such as creative writing, chatbot, machine translation etc.
1from transformers import AutoTokenizer, AutoModelForCausalLM
2
3tokenizer = AutoTokenizer.from_pretrained("Simbolo-Servicio/Myanmarsar-GPT")
4model = AutoModelForCausalLM.from_pretrained("Simbolo-Servicio/Myanmarsar-GPT")
5
6input_text = "ပညာရေး"
7input_ids = tokenizer.encode(input_text, return_tensors='pt')
8output = model.generate(input_ids, max_length=50)
9print(tokenizer.decode(output[0], skip_special_tokens=True))
We use 20,000 Burmese sentences and most are from our open-source
data which contains 100,000 sentences sourced from Wikipedia.
Main Contributor:
Sa Phyo Thu Htet
Wikipedia Data Crawling: Kaung Kaung Ko Ko, Phuu Pwint Thinzar Kyaing
Releasing the Model: Eithandaraung, Ye Yint Htut, Thet Chit Su, Naing Phyo Aung, Nyan Linn Phyo Zaw, Lynn Thu Kha
We extend our gratitude to the creators of the
mGPT-XL models for their invaluable contribution to this project.
We want to thank everyone who has worked on the related works, especially
Minsithu and
Dr. Wai Yan Nyein Naingwho initiated the work of gpt-2 model.
And We would like to thank Simbolo:Servico which is a branch of Simbolo under the company of Intello Tech for providing financial support.
We have yet to investigate the potential bias inherent in this model thoroughly. Regarding transparency, it's important to note that the model is primarily trained on data from the Unicode Burmese(Myanmar) language.
1@misc{myanmarsar-gpt,
2 author = {{Sa Phyo Thu Htet}},
3 title = {Myanmarsar GPT},
4 url = {https://huggingface.co/Simbolo-Servicio/Myanmarsar-GPT},
5 urldate = {2024-1-09},
6 date = {2024-1-09}
7}