fugumt-en-ja / README.md
staka's picture
Update README.md
f1f3e8f
|
raw
history blame
No virus
577 Bytes
metadata
license: cc-by-sa-4.0
language:
  - en
  - ja
tags:
  - translation

FuguMT

This is a translation model using Marian-NMT. For more details, please see my repository.

  • source language: en
  • target language: ja

How to use

This model uses transformers and sentencepiece.

!pip install transformers sentencepiece

You can use this model directly with a pipeline:

from transformers import pipeline
fugu_translator = pipeline('translation', model='staka/fugumt-en-ja')
fugu_translator('This is a cat.')