shihab17 commited on
Commit
e38cf2c
1 Parent(s): 3d30b0b

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +1 -1
README.md CHANGED
@@ -16,7 +16,7 @@ model = AutoModelForSeq2SeqLM.from_pretrained("shihab17/bengali-bn-to-en")
16
 
17
  sentence = 'ম্যাচ শেষে পুরস্কার বিতরণের মঞ্চে তামিমের মুখে মোস্তাফিজের প্রশংসা শোনা গেল'
18
 
19
- translator = pipeline("translation_en_to_bn", model=model, tokenizer=tokenizer)
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
  ```