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,14 +1,13 @@
|
|
1 |
-
|
2 |
---
|
3 |
language:
|
4 |
- en
|
5 |
- de
|
6 |
-
|
|
|
7 |
tags:
|
8 |
- translation
|
9 |
- wmt16
|
10 |
- allenai
|
11 |
-
license: apache-2.0
|
12 |
datasets:
|
13 |
- wmt16
|
14 |
metrics:
|
@@ -44,7 +43,7 @@ input = "Machine learning is great, isn't it?"
|
|
44 |
input_ids = tokenizer.encode(input, return_tensors="pt")
|
45 |
outputs = model.generate(input_ids)
|
46 |
decoded = tokenizer.decode(outputs[0], skip_special_tokens=True)
|
47 |
-
print(decoded) # Maschinelles Lernen ist
|
48 |
|
49 |
```
|
50 |
|
|
|
|
|
1 |
---
|
2 |
language:
|
3 |
- en
|
4 |
- de
|
5 |
+
- multilingual
|
6 |
+
license: apache-2.0
|
7 |
tags:
|
8 |
- translation
|
9 |
- wmt16
|
10 |
- allenai
|
|
|
11 |
datasets:
|
12 |
- wmt16
|
13 |
metrics:
|
|
|
43 |
input_ids = tokenizer.encode(input, return_tensors="pt")
|
44 |
outputs = model.generate(input_ids)
|
45 |
decoded = tokenizer.decode(outputs[0], skip_special_tokens=True)
|
46 |
+
print(decoded) # Maschinelles Lernen ist gro�artig, nicht wahr?
|
47 |
|
48 |
```
|
49 |
|