Difference between revisions of "Logistic Regression (LR)"

From
Jump to: navigation, search
Line 4: Line 4:
 
** [[...predict categories]]
 
** [[...predict categories]]
 
* [[Capabilities]]  
 
* [[Capabilities]]  
* [http://docs.microsoft.com/en-us/azure/machine-learning/studio-module-reference/linear-regression Linear Regression | Microsoft]
+
* [http://docs.microsoft.com/en-us/azure/machine-learning/studio-module-reference/multiclass-logistic-regression Multiclass Logistic Regression | Microsoft]
  
Linear regression is a common statistical method, which has been adopted in machine learning and enhanced with many new methods for fitting the line and measuring error. In the most basic sense, regression refers to prediction of a numeric target. Linear regression is still a good choice when you want a very simple model for a basic predictive task. Linear regression also tends to work well on high-dimensional, sparse data sets lacking complexity. Azure Machine Learning Studio supports a variety of regression models, in addition to linear regression. However, the term "regression" can be interpreted loosely, and some types of regression provided in other tools are not supported in Studio.
+
Logistic Regression is another technique borrowed by machine learning from the field of statistics. It is the go-to method for binary classification problems (problems with two class values). Logistic regression is like linear regression in that the goal is to find the values for the coefficients that weight each input variable. Unlike linear regression, the prediction for the output is transformed using a non-linear function called the logistic function. The logistic function looks like a big S and will transform any value into the range 0 to 1. This is useful because we can apply a rule to the output of the logistic function to snap values to 0 and 1 (e.g. IF less than 0.5 then output 1) and predict a class value. Because of the way that the model is learned, the predictions made by logistic regression can also be used as the probability of a given data instance belonging to class 0 or class 1. This can be useful on problems where you need to give more rationale for a prediction. Like linear regression, logistic regression does work better when you remove attributes that are unrelated to the output variable as well as attributes that are very similar (correlated) to each other. It’s a fast model to learn and effective on binary classification problems. [http://helloacm.com/a-short-introduction-logistic-regression-algorithm/ A Short Introduction – Logistic Regression Algorithm | EOF (The Ultimate Computing & Technology Blog)]
  
https://cdn-images-1.medium.com/max/640/1*eeIvlwkMNG1wSmj3FR6M2g.gif
+
http://helloacm.com/wp-content/uploads/2016/03/logistic-regression-example.jpg
  
<youtube>CtKeHnfK5uA</youtube>
+
<youtube>D8alok2P468</youtube>
<youtube>uwwWVAgJBcM</youtube>
+
<youtube>7qJ7GksOXoA</youtube>
 +
<youtube>q5iL3XYFv2M</youtube>
 +
<youtube>2JiXktBn_2M</youtube>

Revision as of 16:26, 3 June 2018

YouTube search...

Logistic Regression is another technique borrowed by machine learning from the field of statistics. It is the go-to method for binary classification problems (problems with two class values). Logistic regression is like linear regression in that the goal is to find the values for the coefficients that weight each input variable. Unlike linear regression, the prediction for the output is transformed using a non-linear function called the logistic function. The logistic function looks like a big S and will transform any value into the range 0 to 1. This is useful because we can apply a rule to the output of the logistic function to snap values to 0 and 1 (e.g. IF less than 0.5 then output 1) and predict a class value. Because of the way that the model is learned, the predictions made by logistic regression can also be used as the probability of a given data instance belonging to class 0 or class 1. This can be useful on problems where you need to give more rationale for a prediction. Like linear regression, logistic regression does work better when you remove attributes that are unrelated to the output variable as well as attributes that are very similar (correlated) to each other. It’s a fast model to learn and effective on binary classification problems. A Short Introduction – Logistic Regression Algorithm | EOF (The Ultimate Computing & Technology Blog)

logistic-regression-example.jpg