Machine Learning Tutorial 2 - Logistic Regression Python Part 1 | Machine Learning Basics

preview_player
Показать описание
In this video, we will learn about logistic regression with python in machine learning. Logistic Regression is a Machine Learning algorithm which is used for classification problems, it is a predictive analysis algorithm, and based on the concept of probability. Logistic regression is basically a supervised classification algorithm. In a classification problem, the target variable(or output),y, can take only discrete values for a given set of features(or inputs), X. Logistic regression becomes a classification technique only when a decision threshold is brought into the picture. The setting of the threshold value is a very important aspect of Logistic regression and is dependent on the classification problem itself.

#LogisticRegression #MachineLearning #TitanicDataset
🔊 Watch till last for a detailed description
01:59 What is logistic regression?
06:05 Decision boundary
08:22 Building the model
13:12 Data understanding
38:00 analyzing embarked
50:19 Convert categorical data into numerical data
58:08 Build a logistic regression model

👇👇👇👇👇👇👇👇👇👇👇👇👇👇
✍️🏆🏅🎁🎊🎉✌️👌⭐⭐⭐⭐⭐
ENROLL in My Highest Rated Udemy Courses
to 🔑 Unlock Data Science Interviews 🔎 and Tests

📚 📗 NLP: Natural Language Processing ML Model Deployment at AWS
Build & Deploy ML NLP Models with Real-world use Cases.
Multi-Label & Multi-Class Text Classification using BERT.

📊 📈 Data Visualization in Python Masterclass: Beginners to Pro
Visualization in matplotlib, Seaborn, Plotly & Cufflinks,
EDA on Boston Housing, Titanic, IPL, FIFA, Covid-19 Data.

📘 📙 Natural Language Processing (NLP) in Python for Beginners
NLP: Complete Text Processing with Spacy, NLTK, Scikit-Learn,
Deep Learning, word2vec, GloVe, BERT, RoBERTa, DistilBERT

📈 📘 2021 Python for Linear Regression in Machine Learning
Linear & Non-Linear Regression, Lasso & Ridge Regression, SHAP, LIME, Yellowbrick, Feature Selection & Outliers Removal. You will learn how to build a Linear Regression model from scratch.

📙📊 2021 R 4.0 Programming for Data Science || Beginners to Pro
Learn Latest R 4.x Programming. You Will Learn List, DataFrame, Vectors, Matrix, DateTime, DataFrames in R, GGPlot2, Tidyverse, Machine Learning, Deep Learning, NLP, and much more.

---------------------------------------------------------------

💯 Read Full Blog with Code
💬 Leave your comments and doubts in the comment section
📌 Save this channel and video for watch later
👍 Like this video to show your support and love ❤️

~~~~~~~~
🆓 Watch My Top Free Data Science Videos
👉🏻 Python for Data Scientist
👉🏻 Machine Learning for Beginners
👉🏻 Feature Selection in Machine Learning
👉🏻 Text Preprocessing and Mining for NLP
👉🏻 Natural Language Processing (NLP)
👉🏻 Deep Learning with TensorFlow 2.0
👉🏻 COVID 19 Data Analysis and Visualization
👉🏻 Machine Learning Model Deployment Using
👉🏻 Make Your Own Automated Email Marketing

***********
🤝 BE MY FRIEND
Рекомендации по теме
Комментарии
Автор

can u pls share the repository details, repo mentioned in description for Download Working File is not available.

mohan
Автор

Tks for the detailed video. Can help to suggest why 'X_test' is used instead of 'y_predict' while taking model score ? Tks

yogeshbharadwaj
Автор

Can you share the notebook via google drive? There is no images in GitHub Repo.

mikebot
Автор

in the end when you are checking the model score, you have taken (x_test, y_test)... it should be (y_predict, y_test) right?

HarishS
Автор

Anybody tell what is axes subplots object is not scriptable

kaviarasan
Автор

sir ye error dekhiye na


F = sns.FacetGrid(titanic, row='embarked', height=4)
F.map(sns.pointplot, 'pclass', 'survived', 'sex', order=None, hue_order=None)


TypeError: Cannot cast array data from dtype('int64') to dtype('int32') according to the rule 'safe'

shubhamjha
Автор

What is fig and figsize in the histogram. Please explain

Ramesh-rpjq
Автор

Hello Laxmi sir .. i want to dwnload working github file for this playlist but it gives.. 404 errors .. pls reply me, how can i download these ..

abhishekpandey
Автор

TypeError: Cannot cast array data from dtype('int64') to dtype('int32') according to the rule 'safe' this error is generaly related with
NumPy version: 1.18.1
seaborn version: 0.10.0
but in the new version of seaborn, this problem is solved
update your seaborn using (pip install seaborn --upgrade)
restart your kernel and run all cell

shubhamjha
Автор

Hello Laxmi, one quick question..while converting the categorical data into numerical, you have given men =0, women = 1 and children =2. I understand that you have seen the survival rate and given the numbers in such a way. However, for Class, we know that 3rd class passengers least survived, but they have highest value of 3. Do you think we need to change values of 3 class to 0, 2nd class to 1 and 1st class to 3. Pls help me to understand.

chandramandava