BlackKakapo commited on
Commit
56152f9
1 Parent(s): 22fd5d6

Update README.md

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