Most Machine Learning courses start with Linear Regression
AlgorithmType(Possible) Uses
k-Nearest NeighborSupervised ClusteringClassifying items based on the most common of the k-nearest neighbors
k-MeansUnsupervised ClusteringClassifying items into one of k groups
RecommenderClusteringPicking Movies/Foods/Music based on either (A) Your prior favorites or (B) prior favorites of people like you.
Neural NetworksLinear RegressionFinding the price of a house based on neighborhood and square footage.
Neural NetworksLogistic RegressionFinding the probability a tumor with certain size, proteins and shape is cancerous.
Convolutional Neural NetworksLogistic RegressionFinding the probability that picture is of a dog, or cat, or house.
Recurrent Neural NetworkLogistic RegressionFinding a probability where there is a prior state dependence (i.e. not just based on immediate inputs).
Restricted Boltzman MachineUnsupervisedFinding hidden relationships in data.
AutoEncodersUnsupervised RegressionEncoding a picture down to a certain number of bytes (say, 30) then re-encoding it back. Good for identifying essential dimensions of an image.

Building a ML model is often a trial and error- involves properly selecting:

Possible Projects