FastAI Chapter 1

I have been learning ML through use of the FastAI library, which is built upon PyTorch. Here I will define the basics of machine learning as used in a binary classification model as per the fastbook lesson 1. Programming generally involves a flow chart of inputs -> program -> results in order to solve a problem. Machine learning involves teaching the computer to solves the problems itself by adding a few things to the work flow. By adding "weights" (or parameters) to the program (or model), one can adjust the results of the model even with the same inputs. According to fastai, "weights are just variables, and a weight assignment is a particular choice of values for those variables."