Add multilingual to the language tag

#1
by lbourdois - opened
Files changed (1) hide show
  1. README.md +3 -4
README.md CHANGED
@@ -1,14 +1,13 @@
1
-
2
  ---
3
  language:
4
  - en
5
  - de
6
- thumbnail:
 
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 großartig, nicht wahr?
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