File size: 1,401 Bytes
5dc683c
 
031f222
 
 
 
 
 
 
 
 
 
5dc683c
031f222
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
---
license: apache-2.0
language:
- si
widget:
- text: 'writeWiki: මානව ආහාර'
- text: 'writeWiki: ගෝලීයකරණය'
- text: 'writeWiki: ජංගම දුරකථනය'
- text: 'writeWiki: ඇස්කිමෝවරු'
- text: 'writeWiki: අනුරාධපුරය'
datasets:
- wikipedia
---
### Fine tuned MT5 base model with Sinhala Wikipedia Dataset

This model is fine tuned with articles from Sinhala Wikipedia for article generation. Used around 10,000 articles for training and fine tuned more than 100 times.

### How to use

We have to use **"writeWiki: "** part at the begining of each prompt.

You can use this model with a pipeline for text generation.

First you might need to install required libraries and import them.
```py
!pip uninstall transformers -y
!pip install transformers

pip install tokenizers sentencepiece
```

Then we might need to restart the runtime either manually or use the below code to end it. 
```py
import os
os.kill(os.getpid(), 9)
```

Then we just have to import the tokenizer and run the pipeline:

```py
from transformers import AutoTokenizer
tokenizer = AutoTokenizer.from_pretrained('google/mt5-base')

from transformers import pipeline
generator = pipeline(model='Suchinthana/MT5-Sinhala-Wikigen-Experimental', tokenizer=tokenizer)
generator("writeWiki: මානව ආහාර", do_sample=True, max_length=180)
```