February 2018
Intermediate to advanced
378 pages
10h 14m
English
The two Python libraries that we're going to use in this chapter are natural language toolkit (NLTK) and Gensim. We will use the first one for text preprocessing and the second one for training or machine learning models. To install them, activate your Python virtual environment:
> cd ~ > virtualenv swift-ml-book
And run pip install:
> pip install -U nltk gensim
Read now
Unlock full access