Join the conversation
i learn about logistic regression how to work classification problem
Reply
Logistic regression is used to classify different based upon sigmoid function. Basically, it also consists of numerical values that's why we said it regression. Its goal is to predict the probability that an instance belongs to a given class or not.
Reply
I learned about Logistic Regression and it's implementation.
Reply
Assignment: Why is logistic regression used for Classification?
Answer: Logistic regression is used for classification because it models the probability of a certain class or event existing, which makes it suitable for binary and multiclass classification problems.
Reply
Logistic regression is used for classification problems because it predicts the probability that a given input point belongs to a certain class. The core idea is to find a relationship between features and the probability of particular outcomes. Unlike linear regression which outputs a continuous number, logistic regression transforms its output using the logistic sigmoid function to return a probability value which can then be mapped to two or more discrete classes.
Reply
Logistic Regression is often associated with classification problems because its primary purpose is to model the probability of a binary outcome. The logistic regression model predicts the probability that an observation belongs to a particular category (class 1) based on one or more independent variables. Despite having "regression" in its name, logistic regression is used for classification, not regression.
Reply
Assignment: Q1. Why is logistic regression a classification problem? Logistic regression is a statistical method used for binary classification problems, meaning problems where the outcome variable (or dependent variable) has two possible classes or categories. It's called "regression" because it involves the logistic function, but it's used for classification rather than regression tasks. Logistic Function (Sigmoid): Probability Interpretation: Decision Boundary: Maximum Likelihood Estimation: Linear Decision Boundary: and I have done this video with 100% practice.
Reply
Assignment: Q1. Why is logistic regression a classification problem?
Logistic regression is a statistical method used for binary classification problems, meaning problems where the outcome variable (or dependent variable) has two possible classes or categories. It's called "regression" because it involves the logistic function, but it's used for classification rather than regression tasks.
Logistic Function (Sigmoid):
Probability Interpretation:
Decision Boundary:
Maximum Likelihood Estimation:
Linear Decision Boundary:
Reply
I learned in this lecture logistics regression with 100% practice.
Logistic Regression is the key to successfully classifying the feature values based on probability.
Reply
Assignment of Day-75, 15-dec-2023 ML (day-8)Why is logistic regression a classification problem?Logistic regression is a classification algorithm because it predicts the probability of an observation belonging to a specific class rather than predicting a continuous value as in regression problems. The logistic function and the thresholding process make it suitable for binary classification tasks, where the goal is to assign observations to one of two classes based on their feature values.
Reply