MachineLearningWithPython icon indicating copy to clipboard operation
MachineLearningWithPython copied to clipboard

Starter files for Pluralsight course: Understanding Machine Learning with Python

Results 5 MachineLearningWithPython issues
Sort by recently updated
recently updated
newest added

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...

![Untitled](https://user-images.githubusercontent.com/14166099/123730123-02309680-d864-11eb-9a57-8cdd08ec1154.png) `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: ![image](https://user-images.githubusercontent.com/5397589/37241708-11f112c4-2490-11e8-8ef3-f689fa6bf4c6.png) Your result (origin exercise file): ![image](https://user-images.githubusercontent.com/5397589/37241716-3ece4d34-2490-11e8-820d-492897e392c0.png) 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...