Update README.md
Browse files
README.md
CHANGED
@@ -20,8 +20,12 @@ Details of the data and source code are shown in [my repository](https://github.
|
|
20 |
|
21 |
### How to use
|
22 |
|
23 |
-
|
|
|
|
|
|
|
24 |
|
|
|
25 |
```python
|
26 |
from transformers import pipeline
|
27 |
fugu_translator = pipeline('translation', model='staka/fugumt-en-ja')
|
|
|
20 |
|
21 |
### How to use
|
22 |
|
23 |
+
This model uses transformers and sentencepiece.
|
24 |
+
```python
|
25 |
+
!pip install transformers sentencepiece
|
26 |
+
```
|
27 |
|
28 |
+
You can use this model directly with a pipeline:
|
29 |
```python
|
30 |
from transformers import pipeline
|
31 |
fugu_translator = pipeline('translation', model='staka/fugumt-en-ja')
|