pythlang
pythlang

Reputation: 328

kaggleword2vec utility not found

I'm trying to follow along with some tutorials to complete some projects/competitions but I can't seem to find "kaggleword2vec"; any suggestions?

import os 
from sklearn.feature_extraction.text import CountVectorizer
from sklearn.ensemble import RandomForestClassifier
from KaggleWord2VecUtility import KaggleWord2VecUtility
import pandas as pd 
import numpy as np

Traceback (most recent call last):
  File "/Users/jordanXXX/Documents/NLP/sentimentanalysis9", line 4, in <module>
    from KaggleWord2VecUtility import KaggleWord2VecUtility
ImportError: No module named KaggleWord2VecUtility

Where can I find the KaggleWord2VecUtility? I have Word2Vec and a bunch of other toolkits I've been using but this one in particular isn't recognized. I'd like to continue following the tutorials but can't seem to without this module.

Thanks

Upvotes: 1

Views: 2083

Answers (1)

BallpointBen
BallpointBen

Reputation: 13770

You can get everything you need here https://github.com/wendykan/DeepLearningMovies

Upvotes: 2

Related Questions