Metadata-Version: 2.1
Name: ImpactLearning
Version: 0.8
Summary: UNKNOWN
Home-page: https://github.com/Kowsher/Impact-Learning-
Author: Kowsher Ahmed, Avishek Das
Author-email: ahmedshuvo969@gmail.com, avishek.das.ayan@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
Requires-Dist: h5py (==2.10.0)
Requires-Dist: tensorflow (==2.2.0)
Requires-Dist: numpy (==1.18.5)

Bangla Lemmatizer (BnLemma)
==================================
BnLemma is a powerful tool for getting the root words of the words used in any Bangla sentence.
There is a pretrained model available with this package.
This page gives a basic introduction to the package.

## Installation:

```
pip install BnLemma
```

In Python a Bangla Linga is typically written as:

## Usage:
```python
>>>  from BnLemma import lemmatization as lm
>>>  s = "মানুষের জীবনটা পাচ্ছেন তাই কাজে লাগানো দরকার আমাদেরকে"  
>>>  s = lm.lemma(s)
>>>  print(s)

```
Output:
```
মানুষ জীবন পাওয়া তাই কাজ লাগা দরকার আমাদের
```


