fugumt-en-ja / README.md
staka's picture
Update README.md
5309065
---
license: cc-by-sa-4.0
language:
- en
- ja
tags:
- translation
---
# FuguMT
This is a translation model using Marian-NMT.
Details of the data and source code are shown in [my repository](https://github.com/s-taka/fugumt).
* source language: en
* target language: ja
### How to use
You can use this model directly with a pipeline:
```python
from transformers import pipeline
tako_translator = pipeline('translation', model='staka/fugumt-en-ja')
tako_translator('This is a cat.')
```