File size: 495 Bytes
75d3ae1
 
5309065
 
 
 
 
 
 
 
75d3ae1
5309065
 
 
 
 
 
 
 
 
 
 
 
 
 
 
dd61774
 
5309065
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
---
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
fugu_translator = pipeline('translation', model='staka/fugumt-en-ja')
fugu_translator('This is a cat.')
```