Skip to content

Sylvia9628/test_nbdev

Repository files navigation

test_nbdev

This is a project to test out nbdev

This file will become your README and also the index of your documentation.

Install

pip install test_nbdev

How to use

Lemmatize

documents =  ["Hello world", "NLP is fun", "We work at the bank"]
text = Preprocess(documents)
preprocessed = text.lemmatize()
preprocessed
[['hello', 'world'], ['NLP', 'fun'], ['-PRON-', 'work', 'bank']]

Stemming

documents =  ["Hello world", "NLP is fun", "We work at the bank"]
text = Preprocess(documents)
preprocessed = text.stemming()
preprocessed
[['hello', 'world'], ['nlp', 'fun'], ['we', 'work', 'bank']]

About

No description, website, or topics provided.

Resources

License

Contributing

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Generated from fastai/nbdev_template