Skip to content

BNTRANSLIT V1.0.0

Compare
Choose a tag to compare
@sagorbrur sagorbrur released this 28 Apr 18:44
· 9 commits to master since this release

BNTRANSLIT

A Deep learning-based transliteration app for Bangla word

How to use

  • Install by pip install bntranslit
  • download pre-trained model from here
  • run following API code
    from bntranslit import BNTransliteration
    
    bntrans = BNTransliteration()
    
    model_path = "bntranslit_model.pth"
    word = "vaat"
    output = bntrans.predict(model_path, word, topk=10)
    # output: ['ভাট', 'ভাত', 'ভাঁট', 'ওয়াট', 'ভাঁত', 'ভোট', 'ভাঠ', 'ভাদ', 'ভট', 'ভ্যাট']