staka commited on
Commit
091f367
1 Parent(s): 2204814

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +32 -0
README.md CHANGED
@@ -1,3 +1,35 @@
1
  ---
2
  license: cc-by-sa-4.0
 
 
 
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: cc-by-sa-4.0
3
+ language:
4
+ -de
5
+ -en
6
+ -es
7
+ -fr
8
+ -it
9
+ -ja
10
+ -ru
11
+ -uk
12
+ tags:
13
+ - translation
14
+
15
  ---
16
+
17
+ # TakoMT
18
+
19
+ This is a translation model using Marian-NMT.
20
+ Details of the data and source code are shown in [my repository](https://github.com/s-taka/fugumt).
21
+
22
+ * source language(s): de, en, es, fr, it, ru, uk
23
+ * target language: ja
24
+
25
+ In addition to the above I also used paracrawl.
26
+
27
+ ### How to use
28
+
29
+ You can use this model directly with a pipeline:
30
+
31
+ ```python
32
+ from transformers import pipeline
33
+ tako_translator = pipeline('translation', model='staka/takomt')
34
+ tako_translator('This is a cat.')
35
+ ```