BlackKakapo commited on
Commit
db966eb
1 Parent(s): ced7752

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +22 -0
README.md CHANGED
@@ -1,3 +1,25 @@
1
  ---
 
 
 
 
 
2
  license: apache-2.0
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ language:
3
+ - ro
4
+ - fi
5
+ tags:
6
+ - translation
7
  license: apache-2.0
8
+ datasets:
9
+ - yhavinga/ccmatrix
10
+ pipeline_tag: translation
11
  ---
12
+
13
+ # Finnish-Romanian Translate
14
+ ![v1.0](https://img.shields.io/badge/V.1-31.03.2023-brightgreen)
15
+
16
+ # Finetune
17
+ This model is a finetune of the Helsinki-NLP/opus-mt-fi-ro model, on 2 million records.
18
+
19
+ ### How to use
20
+ ```python
21
+ from transformers import AutoTokenizer, AutoModelForSeq2SeqLM
22
+
23
+ tokenizer = AutoTokenizer.from_pretrained("BlackKakapo/opus-mt-fi-ro")
24
+ model = AutoModelForSeq2SeqLM.from_pretrained("BlackKakapo/opus-mt-fi-ro")
25
+ ```