File size: 307 Bytes
7a0a905
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
you can use this model with simpletransfomers.
```
!pip install simpletransformers
from simpletransformers.t5 import T5Model

model = T5Model("mt5", "AimB/mT5-en-kr-natural")
print(model.predict(["I feel good today"]))
print(model.predict(["์šฐ๋ฆฌ์ง‘ ๊ณ ์–‘์ด๋Š” ์„ธ์ƒ์—์„œ ์ œ์ผ ๊ท€์—ฝ์Šต๋‹ˆ๋‹ค"]))
```