Author | Message |
---|---|
lmann2
Posts: 156
|
Posted 17:49 Feb 25, 2016 |
Can someone explain the importance of applying sklearn's train_test_split? |
lmann2
Posts: 156
|
Posted 19:24 Feb 25, 2016 |
Thought this was helpful: https://www.researchgate.net/post/Whats_the_difference_between_training_set_and_test_set and http://stats.stackexchange.com/questions/19048/what-is-the-difference-between-test-set-and-validation-set . My question still remains for this assignment though. Last edited by lmann2 at
19:25 Feb 25, 2016.
|
msargent
Posts: 519
|
Posted 18:49 Feb 28, 2016 |
Due to the possibility of overfitting, we cannot report accuracy using the same data used to train our classifier. We need to test accuracy on a fresh set of data: data that wasn't used in training. |