Add multilingual to the language tag
Browse filesHi! A PR to add multilingual to the language tag to improve the referencing.
README.md
CHANGED
@@ -1,12 +1,13 @@
|
|
1 |
---
|
2 |
-
language:
|
3 |
- en
|
4 |
- de
|
|
|
5 |
license: apache-2.0
|
6 |
-
datasets:
|
7 |
-
- wmt14
|
8 |
tags:
|
9 |
- translation
|
|
|
|
|
10 |
---
|
11 |
|
12 |
# bert2bert_L-24_wmt_en_de EncoderDecoder model
|
@@ -35,4 +36,4 @@ input_ids = tokenizer(sentence, return_tensors="pt", add_special_tokens=False).i
|
|
35 |
output_ids = model.generate(input_ids)[0]
|
36 |
print(tokenizer.decode(output_ids, skip_special_tokens=True))
|
37 |
# should output
|
38 |
-
#
|
|
|
1 |
---
|
2 |
+
language:
|
3 |
- en
|
4 |
- de
|
5 |
+
- multilingual
|
6 |
license: apache-2.0
|
|
|
|
|
7 |
tags:
|
8 |
- translation
|
9 |
+
datasets:
|
10 |
+
- wmt14
|
11 |
---
|
12 |
|
13 |
# bert2bert_L-24_wmt_en_de EncoderDecoder model
|
|
|
36 |
output_ids = model.generate(input_ids)[0]
|
37 |
print(tokenizer.decode(output_ids, skip_special_tokens=True))
|
38 |
# should output
|
39 |
+
# M�chten Sie diese Woche einen Kaffee mit mir schnappen?
|