/bengali-sbd

Simple Rule-Based Sentence Boundary Detection for Bengali

Primary LanguagePython

BanglaKit Sentence Boundary Detector (SBD)

This simple Python Package detects the boundaries of Bengali sentences and split sentences properly.

Example

import bengali_sbd

bengali_sbd.split('আমি বলেছিলাম, "ওখানে যাসনে। সাপ থাকতে পারে।" কেউ শুনল না।')
# [
#   'আমি বলেছিলাম, "ওখানে যাসনে। সাপ থাকতে পারে।"',
#   'কেউ শুনল না।'
# ]