Summary of two solutions of linear regression

Regression performance evaluation mean square error gradient decline from sklearn.datasets import load_bost...     read the whole passage
lucky November 13, 2018
3 Comments

Optimization case of linear regression strategy

Regression is an iterative algorithm that constantly searches for the optimal w (weight) value. Algorithm Linear regression strategy The least squares method optimizes the normal equation gradient descent loss function error sum of squares, also known as the least squares method Normal equation gradient descent AP     read the whole passage
lucky November 13, 2018
0 Comments

linear algebra

The concept of utility linear algebra is very important for understanding the principles behind machine learning, especially in the field of deep learning. It can help us better understand how the algorithm works inside, so that we can make better     read the whole passage
lucky November 12, 2018
0 Comments

linear regression

Linear regression definition: linear regression is a regression analysis based on modeling between one or more independent variables or dependent variables, which can be a linear combination between one or more independent variables (a kind of linear regression). One variable linear regression: involves     read the whole passage
lucky November 12, 2018
0 Comments

Division of decision tree and cases

One of the criteria for the division of the decision tree is the information gain g (D, A) of feature A to training data set D. It is defined as the difference between the information entropy H (D) of set D and the information condition entropy H (D | A) of D under the given conditions of feature A     read the whole passage
lucky November 10, 2018
0 Comments