We can also use perceptron as linear regressor. By just removing the function. So, the equation would become
Perceptron Regressor - 1D input
- Predict commute time to University
- Input variables (features):
- Distance to University (km)
- Day of the week (1 for weekday, 0 for weekend)
- Output/tagert ?
- Commute time (min)
- Solution:
- Perceptron without sign-function
- Equal to standard linear regression
- Input variables (features):
Summary
- Perceptron without sign function is linear regressor
- Output is linear function of inputs
- and define function
- Weight vector determines slope in each direction
- Bias shifts function up and down
- Don’t mix up with hyperplane in classifier!
- and define function
