MachineLearningWithPython
MachineLearningWithPython copied to clipboard
Starter files for Pluralsight course: Understanding Machine Learning with Python
Hi Jerry, really enjoying the course, but is the code from the video examples available somewhere? If not, it would be helpful to have since it's not always possible to...
 `y_train[y_train[:] == 1]` and `y_train[y_train[:] == 0]` both return 537 rows.
I follow your tutorial for Pima-Prediction, and use "./data/pima-data.csv". My result:  Your result (origin exercise file):  What makes it different?
Hi, I found a small mistake in one of the course videos (sorry if this is the wrong place to post such issues, I tried to leave feedback directly on...
Hi This code looks wrong print("Training True : {0} ({1:0.2f}%)".format(len(y_train[y_train[:] == 1]), (len(y_train[y_train[:] == 1])/len(df.index) * 100.0))) print("Training False : {0} ({1:0.2f}%)".format(len(y_train[y_train[:] == 0]), (len(y_train[y_train[:] == 0])/len(df.index) * 100.0))) print("Test...