takomt / README.md
staka's picture
Update README.md
8f3fc48
|
raw
history blame
728 Bytes
metadata
license: cc-by-sa-4.0
language:
  - de
  - en
  - es
  - fr
  - it
  - ja
  - ru
  - uk
tags:
  - translation

TakoMT

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

In addition to the data listed in the repository I also used ParaCrawl.

  • source languages: de, en, es, fr, it, ru, uk
  • 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
tako_translator = pipeline('translation', model='staka/takomt')
tako_translator('This is a cat.')