Mollel commited on
Commit
280a42e
·
verified ·
1 Parent(s): b54d946

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +1 -0
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