Commit
·
e43e9ba
1
Parent(s):
683a957
Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,56 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: creativeml-openrail-m
|
3 |
+
language:
|
4 |
+
- my
|
5 |
+
tags:
|
6 |
+
- Myanmar
|
7 |
+
- Burmese
|
8 |
+
- GPT2
|
9 |
+
- MyanmarGPT
|
10 |
+
- Nautral Language Processing
|
11 |
+
---
|
12 |
+
|
13 |
+
# Myanmar-GPT
|
14 |
+
|
15 |
+
Myanmar GPT is a model trained on a private Myanmar language dataset made by MinSiThu.
|
16 |
+
The project aims to make the Myanmar language available in the GPT2 Model.
|
17 |
+
|
18 |
+
Fine-tuning the MyanmarGPT model makes it easier to build a custom Myanmar language model than using alternative language models.
|
19 |
+
|
20 |
+
Reports on training the MyanmarGPT model are visualized at [MyanmarGPT Report](https://api.wandb.ai/links/minsithu/wn8yul90).
|
21 |
+
|
22 |
+
## How to use in your project
|
23 |
+
|
24 |
+
```
|
25 |
+
!pip install transformers
|
26 |
+
```
|
27 |
+
|
28 |
+
```python
|
29 |
+
from transformers import pipeline
|
30 |
+
|
31 |
+
generator = pipeline(model="jojo-ai-mst/MyanmarGPT")
|
32 |
+
outputs = generator("အီတလီ",do_sample=False)
|
33 |
+
|
34 |
+
print(outputs)
|
35 |
+
# [{'generated_text': 'အီတလီဘုရင့်နိုင်�'}]
|
36 |
+
```
|
37 |
+
|
38 |
+
|
39 |
+
## Here is the guideline for using the MyanmarGPT license,
|
40 |
+
- MyanmarGPT is free to use for everyone,
|
41 |
+
|
42 |
+
- **Must Do**
|
43 |
+
- any project derived/finetuned from MyanmarGPT, used MyanmarGPT internally,
|
44 |
+
- or modified MyanmarGPT, related to MyanmarGPT **must mention the citation below** in the corresponding project's page.
|
45 |
+
- the citation
|
46 |
+
```latex
|
47 |
+
@online{MyanmarGPT,
|
48 |
+
author = {MinSiThu},
|
49 |
+
title = {MyanmarGPT},
|
50 |
+
year = 2023,
|
51 |
+
url = {https://huggingface.co/jojo-ai-mst/MyanmarGPT},
|
52 |
+
urldate = {2023-12-14}
|
53 |
+
}
|
54 |
+
```
|
55 |
+
|
56 |
+
For contact, reach me via [https://www.linkedin.com/in/min-si-thu/](https://www.linkedin.com/in/min-si-thu/)
|