Edit model card
YAML Metadata Warning: empty or missing yaml metadata in repo card (https://huggingface.co/docs/hub/model-cards#model-card-metadata)

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(["์šฐ๋ฆฌ์ง‘ ๊ณ ์–‘์ด๋Š” ์„ธ์ƒ์—์„œ ์ œ์ผ ๊ท€์—ฝ์Šต๋‹ˆ๋‹ค"]))
Downloads last month
29