1

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

Ébe Isaac
  • 11,563
  • 17
  • 64
  • 97
pythlang
  • 328
  • 5
  • 15

1 Answers1

2

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

BallpointBen
  • 9,406
  • 1
  • 32
  • 62
  • @ballpointpen thanks for sharing, but i'm not sure how to download that. i've seen that page before but i'm not sure what exactly to do :/ – pythlang Nov 15 '16 at 19:51
  • You can just open each file and manually download if you don't want to use git. – BallpointBen Nov 16 '16 at 04:05
  • @ballpointpen i'm using a mac with brew and can use **brew install** or **pip install** or **easy_install** but can probably figure out how to download them. – pythlang Nov 16 '16 at 05:03