Update README.md
Browse files
README.md
CHANGED
@@ -58,6 +58,7 @@ The following parameters were used for the translation:
|
|
58 |
inputs = tokenizer(text, return_tensors="pt", padding=True, truncation=True, max_length=1024).to(device)
|
59 |
outputs = model.generate(**inputs, tgt_lang=dest_lang)
|
60 |
translation = tokenizer.batch_decode(outputs, skip_special_tokens=True)
|
|
|
61 |
|
62 |
2. Human Verification and Annotation:
|
63 |
|
|
|
58 |
inputs = tokenizer(text, return_tensors="pt", padding=True, truncation=True, max_length=1024).to(device)
|
59 |
outputs = model.generate(**inputs, tgt_lang=dest_lang)
|
60 |
translation = tokenizer.batch_decode(outputs, skip_special_tokens=True)
|
61 |
+
```
|
62 |
|
63 |
2. Human Verification and Annotation:
|
64 |
|