File size: 725 Bytes
1e1d2d0
 
d52e556
091f367
d52e556
 
 
 
 
 
 
 
 
091f367
d52e556
091f367
1e1d2d0
091f367
 
 
 
 
 
 
 
 
75b5543
091f367
 
 
a203234
 
 
 
 
091f367
 
 
 
 
 
 
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
---
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.
Details of the data and source code are shown in [my repository](https://github.com/s-taka/fugumt).

* source language(s): de, en, es, fr, it, ru, uk 
* target language: ja 

In addition to the above I also used [ParaCrawl](https://paracrawl.eu/).

### How to use

This model uses transformers and sentencepiece.
```python
!pip install transformers sentencepiece
```

You can use this model directly with a pipeline:

```python
from transformers import pipeline
tako_translator = pipeline('translation', model='staka/takomt')
tako_translator('This is a cat.')
```