A repository full of Machine Learning practice programs in Python from online tutorials, with tweeks.
Programs regarding regression are from following sendex's Machine Learning Tutorial with Python Programming Youtube series found here:
#https://www.youtube.com/playlist?list=PLQVvvaa0QuDfKTOs3Keq_kaG2P55YRn5v
Reporting on any changes necessary from original video:
Video/Part 4 of the series uses sklearn sublibrary "Cross_Validation" which no longer works.
Use instead: from sklearn.model_selection import train_test_split
Update shown in program uploaded in this repository.
Reviewing perceptron in python:
Based on following along with Single-Layer Perceptron: Background & Python Code -- Brian Faure