-
Notifications
You must be signed in to change notification settings - Fork 1
Logistic Regression
Ishani Kathuria edited this page Dec 24, 2022
·
2 revisions
A Logistic Regression model is similar to a Linear Regression model, except that the Logistic Regression utilizes a more sophisticated cost function, which is known as the “Sigmoid function” or “logistic function” instead of a linear function.
- Binary Logistic Regression: The categorical response has only two 2 possible outcomes. Example: Spam or Not.
- Multinomial Logistic Regression: Three or more categories without ordering. Example: Predicting which food is preferred more (Veg, Non-Veg, Vegan)
- Ordinal Logistic Regression: Three or more categories with ordering. Example: Movie rating from 1 to 5.
Where
The Titanic dataset from Kaggle was used with columns,
- survival
- pclass
- sex
- Age
- sibsp
- parch
- ticket
- fare
- cabin
- embarked
The dataset can be used to predict whether a passenger will survive the titanic or not.
-
To learn more about Artificial Intelligence concepts, see Artificial Intelligence, Machine Learning, and Deep Learning..
-
Learn ML with Google Machine Learning Crash Course.
- Home
-
Machine Learning
- Supervised Learning
- Unsupervised Learning
- Deep Learning
- Recommender Systems