forked from udacity/ud120-projects
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
43 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
#!/usr/bin/python | ||
|
||
import pickle | ||
import numpy | ||
numpy.random.seed(42) | ||
|
||
|
||
### the words (features) and authors (labels), already largely processed | ||
words_file = "../text_learning/your_word_data.pkl" ### you made this in previous mini-project | ||
authors_file = "../text_learning/your_email_authors.pkl" ### this too | ||
word_data = pickle.load( open(words_file, "r")) | ||
authors = pickle.load( open(authors_file, "r") ) | ||
|
||
|
||
|
||
### test_size is the percentage of events assigned to the test set (remainder go into training) | ||
from sklearn import cross_validation | ||
features_train, features_test, labels_train, labels_test = cross_validation.train_test_split(word_data, authors, test_size=0.1, random_state=42) | ||
|
||
|
||
from sklearn.feature_extraction.text import TfidfVectorizer | ||
vectorizer = TfidfVectorizer(sublinear_tf=True, max_df=0.5, | ||
stop_words='english') | ||
features_train = vectorizer.fit_transform(features_train).toarray() | ||
features_test = vectorizer.transform(features_test).toarray() | ||
|
||
|
||
### a classic way to overfit is to use a small number | ||
### of data points and a large number of features | ||
### train on only 150 events to put ourselves in this regime | ||
features_train = features_train[:150] | ||
labels_train = labels_train[:150] | ||
|
||
|
||
|
||
### your code goes here | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters