The TempPerceptron object trains a perceptron on a small dataset of
temperatures from counties in Texas where the variables/factors to consider
are Latitude (x1), Elevation (x2) and Longitude (x3). The regression equation
is the following:
y = sigmoid (w dot x) = sigmoid (w0 + w1*x1 + w2*x2 + w3*x3)
The
TempPerceptron
object trains a perceptron on a small dataset of temperatures from counties in Texas where the variables/factors to consider are Latitude (x1), Elevation (x2) and Longitude (x3). The regression equation is the following:y = sigmoid (w dot x) = sigmoid (w0 + w1*x1 + w2*x2 + w3*x3)