Skip to content

Commit

Permalink
corrected location of data files
Browse files Browse the repository at this point in the history
  • Loading branch information
ShengKungYi committed Mar 4, 2015
1 parent b452e9a commit f4a2668
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions feature_selection/find_signature.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,9 @@


### the words (features) and authors (labels), already largely processed
words_file = "word_data_overfit.pkl" ### like the file you made in the last mini-project
authors_file = "email_authors_overfit.pkl" ### this too
### these files should have been created from the previous (Lesson 10) mini-project.
words_file = "../text_learning/word_data_overfit.pkl"
authors_file = "../text_learning/email_authors_overfit.pkl"
word_data = pickle.load( open(words_file, "r"))
authors = pickle.load( open(authors_file, "r") )

Expand Down

0 comments on commit f4a2668

Please sign in to comment.