Natural Language Processing (NLP) using Python
- Sentence Tokenization
- Word Tokenization
- Stemming
- Lemmatization
- Stopwords removal
- Part of speech tagging
- Make sure python3 and git is installed. Install Python : From official website
From official website
py --version
python --version
py -m pip install nltk
py -m venv blog_app
.\Scripts\activate
.\Scripts\deactivate
pip -V
If you are running the virtual env, it'll show the path to the environment's location.
py -m pip install package_name
$null > file_name.cpp
git config --global user.email "user_mail"
git config --global user.name "user_name"
git checkout <branch-name>
git branch -a
py -m pip freeze
py -m pip list
Change to master branch
git checkout master
git merge <branch-name>
git log --graph --oneline --decorate --all
git remote -v
git push --all <remote-origin>
git remote add new-remote-origin-name https://github.com/user_name/repo.git
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.