staka commited on
Commit
59c6ef8
1 Parent(s): 13238e8

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +27 -0
README.md CHANGED
@@ -1,3 +1,30 @@
1
  ---
2
  license: cc-by-sa-4.0
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: cc-by-sa-4.0
3
+
4
+ language:
5
+ - en
6
+ - ja
7
+
8
+ tags:
9
+ - translation
10
+
11
  ---
12
+
13
+ # FuguMT
14
+
15
+ This is a translation model using Marian-NMT.
16
+ Details of the data and source code are shown in [my repository](https://github.com/s-taka/fugumt).
17
+
18
+ * source language: ja
19
+ * target language: en
20
+
21
+ ### How to use
22
+
23
+ You can use this model directly with a pipeline:
24
+
25
+ ```python
26
+ from transformers import pipeline
27
+ fugu_translator = pipeline('translation', model='staka/fugumt-ja-en')
28
+ fugu_translator('猫はかわいいです。')
29
+ ```
30
+