-
Probability
-
Statistics
-
Linear Algebra
-
Calculus
To get a basic understanding on the statistics, you can try this course in HackerRank.
And, here is the solutions.
- Random Dataset for Linear regression
It is the average squared error between the actual and the predicted observations, it is also called as Quadratic Loss, L2 Loss. This method penalizes the values which have high error.
It is the average absolute error between the actual and the predicted observations, it is also called as L1 Loss This method is more sensitive to outliers than MSE, this also needs more complex techniques to compute the gradients.
It is just the difference between the actual and the predicted value, we should take a bit care when dealing with positive and negative bais, because they can make the total bais less.