Model Trained Using AutoTrain
This model is created from llama3.2 1B Instruct. email me at: nazmus.sakib.muzahid@gmail.com
Usage
from transformers import pipeline
messages = [
{"role": "user", "content": "This is a translation from english to bengali."},
]
pipe = pipeline("text-generation", max_new_tokens=512, do_sample=False, model="mnsm92/English_To_Bengali_Translation")
response = pipe(messages)
print(response)
# expected response
# এটি ইংরেজি থেকে বাংলায় অনুবাদ।
Must use one sentence at once. if you want more then one sentence at once, then loop over the sentences then join the results.
- Downloads last month
- 26
Model tree for mnsm92/English_To_Bengali_Translation
Base model
meta-llama/Llama-3.2-1B-Instruct