July 2018
Beginner to intermediate
406 pages
9h 55m
English
Now, we have everything in place to create our own first vectorizer. The most convenient way to do it is to inherit it from BaseEstimator. It requires us to implement the following three methods:
Here is the implementation:
sent_word_net = load_sent_word_net()
class LinguisticVectorizer(BaseEstimator): ...Read now
Unlock full access