Update README.md
Browse files
README.md
CHANGED
@@ -16,7 +16,7 @@ model = AutoModelForSeq2SeqLM.from_pretrained("shihab17/bengali-bn-to-en")
|
|
16 |
|
17 |
sentence = 'ম্যাচ শেষে পুরস্কার বিতরণের মঞ্চে তামিমের মুখে মোস্তাফিজের প্রশংসা শোনা গেল'
|
18 |
|
19 |
-
translator = pipeline("
|
20 |
output = translator(sentence)
|
21 |
print(output)
|
22 |
```
|
|
|
16 |
|
17 |
sentence = 'ম্যাচ শেষে পুরস্কার বিতরণের মঞ্চে তামিমের মুখে মোস্তাফিজের প্রশংসা শোনা গেল'
|
18 |
|
19 |
+
translator = pipeline("translation_bn_to_en", model=model, tokenizer=tokenizer)
|
20 |
output = translator(sentence)
|
21 |
print(output)
|
22 |
```
|