MBSP icon indicating copy to clipboard operation
MBSP copied to clipboard

Memory-based shallow parser for Python

Results 2 MBSP issues
Sort by recently updated
recently updated
newest added

Fresh download of MBSP 1.4 from Github today: ``` python >>> MBSP.lemmatize("The cats were sleeping.", tokenize=True) u'the cat be sleep .' ``` For capital letters, only the first word works:...

In tokenizer.py, ``` python "gonna" : "gon na", "wanna" : "wan na" ``` I suggest changing this to: ``` python "gonna" : "going to", "wanna" : "want to" ``` Cheers,...