Why do you perform label insteand of one hot encoding as the former will implicityl make your model intepret ordinal relationship between the labeled categories ?
@MeetMoyele3 жыл бұрын
hello, can you share link to a copy of the raw data please?
@natnaelalemayehu91124 жыл бұрын
Excellent tutorial. I have one question. Why did you use logistic regression? Could you have used other prediction models?
@kenuffff4 жыл бұрын
logistic regression is good for a binary output like churn yes or no, you could use SVM as well for this type of problem
@LubulaChikwekwe7 ай бұрын
Great work honestly
@jordancampbell50993 жыл бұрын
It seems there's so many videos on building the model, but not on how to deploy it. How do you then use this to predict churn?
@bhesht4 жыл бұрын
Excellent exploration!
@haneulkim49024 жыл бұрын
Thanks simple and informative video it was very helpful. I have two questions to ask though: 1. How to define churn? ex: for gaming company if user do not login for more than 1week they say user churned but in companies like airbnb their churn would be few months or years. Is there a way to define meaning of churn? 2. What other models are useful in churn prediction other than logistic regression?
@mhmodsalla5872 жыл бұрын
+1
@jayceeharb13053 жыл бұрын
Hey man great vid!!! You have a more current vid on sentiment analysis.... how can i get the data set you use?
@vamshikrishna61064 жыл бұрын
Nice Video ! Thank u ! Sir can you upload video, by taking two different datasets for train and test . Just like Hackathons ! And also a video on Time Series Forecasting
@chibuzoekejiuba65004 жыл бұрын
Please I am new in machine learning, as I was practicing your tutorial I got this error; ValueError: Number of labels=1409 does not match number of samples=5634. I'd like you to help me correct it.
@vamshikrishna61064 жыл бұрын
How can we improve our accuracy and recall score ??
@nigelandre88754 жыл бұрын
Hey can you upload your excel as well as code on Github
@MuhammadAhmad-sf1hp4 жыл бұрын
What if Churn value is not provided in the data set, how we can insert the column in data set using the customer ID
@sudhalalwani74434 жыл бұрын
same question
@richardobonyo76394 жыл бұрын
You can preprocess in excel using match and index function. Or create an extra column in your dataframe and use if statement and for loop to check customer ID and pick from you data containing the churn parameters to your previous data set which does not have churn data.
@richardobonyo76394 жыл бұрын
If the data is sorted in order of customer ID number then df ['Churn']=data, should create a new column with the churn data.
@shyamgurunath58763 жыл бұрын
Using labelencoder & standardscaler before splitting the data to training & testing dataset May lead to over fitting.Most likely in linear models.
@akhilsai95593 жыл бұрын
How to prevent zero division error?
@jpaldama99634 жыл бұрын
verrrrrrry nice. I skimmed. im gonna watch the whole vid now. Thanks for you work, it is very appreciated.
@ComputerSciencecompsci1123584 жыл бұрын
Thanks for the nice comment!
@trochymiak4 жыл бұрын
As always, something interesting thx! :)
@ComputerSciencecompsci1123584 жыл бұрын
Glad you enjoyed it !
@639gaurav4 жыл бұрын
can you please tell me , what's wrong in this ?
@kailashraizelmaden46844 жыл бұрын
Thanks alot for the work, sir can you please provide the link for the uploaded cvs file that you have done in second cell.
If a customer churns, it means that they stop doing business with the company. For example, if a Netflix customer churns, it means that they canceled their subscription.
@hassanfirasat30792 жыл бұрын
Thanks but TotalCharges does contains 11 empty values which can be replaced with numpy NaN and classes are also imbalance. You can find empty values with df.loc[df.TotalCharges == " " , "TotalCharges"] And can replace them df.loc[df.TotalCharges == " " , "TotalCharges"] = np.nan