I've only seen 7 minutes of this video and I already love you!! Thank you very much for taking the time to explain all of this. I will watch all the videos on your list😍
Thanks for your clear tutorial. However, I have a question about correlation. Based on the correlation table, since I am using K-means to cluster, I chose a pair with a correlation value that is neither too high nor too low. Therefore, I selected -0.11, which corresponds to SepalLengthCm and SepalWidthCm. But when I calculated the error using SSE in all cases, the pair with a correlation of 0.96 had the smallest error. Could you help me understand why? Thanks once again!
You were getting 100% accuracy because the Jupiter notebook kernel stores the previous model so when you shuffle and re-train your KNN and Logistic model it effectively learns the new patterns and adapts to them. in the end, you end up testing on data it has already seen before.
Hi I was working in the same way on the google collaboratory. In the correlation part I enterd df.corr(), it says df is not defined. Can you please help me out?
Please can i use this same exact process for another dataset for example like a dataset that contains histological images that will be used to detect and classify colorectal cancer
ValueError: could not convert string to float: 'Iris-setosa' I am getting this error while applying the correlation by writing a code df.corr( ) could you please explain how to fix it.
The video was great but i have a doubt what did we achieve at the end after applying so many model like what we did to data or changed something or classified them what did we do at end what is the reason why we trained the model i am a newbie
I'm running jupyter notebook using classification algorithm.... and I have worked on histograms, scatterplots and heatmaps.... i have a doubt in here.... that can we also draw pie charts and box plots using the same data? And is there any perception like we can plot only some type of plot based on the data we have or we can plot all type of plots?
@@dhanabommakanti3620 it depends on the analysis you want to do, if you create box plot here, you can check for outliers. Each plot has specific insights we can get
@@aarohigupta4286 yeah, the train test split might change each time if we run, so it's not an issue, to replicate same results, you can use random state in train_test_split.
hey sir, thank you for the amazing video! is there a video how to handle csv files in os, i want to import data from os, a set of csv files and visualize them any video please or documentation
@@HackersRealm thanks for your reply, but in your video you have 2 files what if i have 3 files, the if is goning to be different how can i write my if please?
Part of the video is severely distorted when I attempt to watch it but when I hover over a piece of the video with my mouse, a preview of what the video should be appears clear.
@@HackersRealm yes I did that, but I thought that dataset was inbuilt in the library and does not need to be downloaded separately and placed in the directory
among the many youtube channels for newbies and new learners, you sir are a legend, very well explained.
Thanks for your kind words!!!
I've only seen 7 minutes of this video and I already love you!! Thank you very much for taking the time to explain all of this. I will watch all the videos on your list😍
Glad the videos are useful!!!
honestly this video is the bestttt i have seen many other videos but you sir nailed it !!
Module execute ni hore kya kare
Thank you very much for the detailed explanation # From Algeria🇩🇿 #😊🙌✨
You're Welcome!!!
The best explanation for beginners. thankyou so much :)
Glad you liked it!!!
Thnx a lot bro , this video made my day , honestly. Luv u bro 👍🏻👍🏻👍🏻 . Even Udemy mentors don't explain in such details.
Glad it was helpful!!!
Omg you deserve my sub !!!
Thanks mate😄
I want to deploy this using flask so how to save model?
Thanks i got 100% accuracy
Thanks for your clear tutorial. However, I have a question about correlation. Based on the correlation table, since I am using K-means to cluster, I chose a pair with a correlation value that is neither too high nor too low. Therefore, I selected -0.11, which corresponds to SepalLengthCm and SepalWidthCm. But when I calculated the error using SSE in all cases, the pair with a correlation of 0.96 had the smallest error. Could you help me understand why? Thanks once again!
thank you very much,
my question is which kind of supervised machine learning algorithms are used in this project?
all the algorithm used are supervised only!!!
raising this error
ValueError: could not convert string to float: 'Iris-setosa'
This was amazing. Very useful!!! Thank you so much.
Glad it was helpful!!!
Thanks a lot for the very well and clear explanation , it is really help
Glad it was helpful😄
You were getting 100% accuracy because the Jupiter notebook kernel stores the previous model so when you shuffle and re-train your KNN and Logistic model it effectively learns the new patterns and adapts to them. in the end, you end up testing on data it has already seen before.
each time when we are running the cell, the model variable is initialized again, so it won't use the previous model.
Well explained. Request you to please post series only data cleaning/preprocessing/Mathematical /EDA operations in python..
I will definitely try to cover the concepts separately
very nice tutorial... easily understandable..... thnq soooooooo much
Always Welcome!!!
Hi I was working in the same way on the google collaboratory. In the correlation part I enterd df.corr(), it says df is not defined. Can you please help me out?
you have to run the cells from the start, dataframe should be loaded...
@@HackersRealm Thank you so much Your vedio was very helpful
@@chandanar8278 Glad you liked it!!!
Thanks buddy it was just awesome.
Glad it was helpful!!!
Thank you very much, that's super helpful !
Glad you liked the content!!!😄
it was awesome. thank yo so much sir
Glad it was helpful!!!
Please can i use this same exact process for another dataset for example like a dataset that contains histological images that will be used to detect and classify colorectal cancer
for image dataset, you could use other projects which are similar in the playlist... or you could use some snippets from the projects for yours
Sir how to link front end to the code. While we give input it is not responds tell the solution.
for frondend, you can use flask to send the data for the model to predict, but it's a long process as you have to create some functions for processing
very detailed explanation
glad you liked it!!!
Well explained
Nice, one question how do you get a dropdown suggestions in the notebook, I can't get it?
try to press tab or shift+space to get suggestions!!!
The session was awesome.. I have worked on it before... But can you tell me where to start ML and Maths stuff , any channel name?
you can refer andrew ng course, or you can check the playlists in my channel that covers ml concepts
@@HackersRealm ohk Sir, andrew ng's YT course is similar as coursera's course ?
@@niteshprajapat7918 yes
@@HackersRealm ohk, Thank u Sir 😀😀
Predict part?
you can check this video for prediction and deployment
th-cam.com/video/2LqrfEzuIMk/w-d-xo.html
df.corr() , it's showing value error , how to rectify it sir?
Could you drop the output column and try again?
Create a new Variable Name ex iris=df.drop(columns="Species")
And apply Correction
iris.corr ()
This will work
is this DECISION TREE based ??plz reply
I used different algorithms for this project
Decision Tree and 3 other models are discussed.
great tutorial
Glad you liked it!!!
sir df.corr() gives error, that cannot convert string into float
please resolve the issue
df = df.select_dtypes(include=[float,int])
df.corr()
this worked for me
this code will work
This video was good, but with accuracy how do you conclude what amount of species belongs to diff groups?
You can use classification report module to get a detailed report for each classes
Thank You Mam
Thank u sir♥️♥️
Glad you liked it!!!
First of all How I can i download this iris dataset as CSV file.
I am facing lots of problem.
You can get it from the github repo in the description, it's easy
shouldnt we drop the duplicate rows ?
is there any duplicate rows in the data? i think the total data is 150 only
in scatterplot the representation of all the the 3 colors is not executing....1 color is missing
you can mention any color you want, of the 3 colors
ValueError: could not convert string to float: 'Iris-setosa'
I am getting this error while applying the correlation by writing a code df.corr( )
could you please explain how to fix it.
Try to remove the colomn, or convert that column using label encoding
@bhawanashukla790 same here. did you solve it ?
did u solve the problem? How?
Solution is df = df.drop(columns = ['Species'])
@@Ally.076 where shoul i put this line of code
Hi sir were did u get csv file because when i am trying it, its shows that no such file in content
you can get it from the github code repo also
Thnx sir i got it ✌🏻
how I can convert my data (from excel) to iris dataset.
you can read the excel using pandas and use the same workflow
@@HackersRealm will you provide a link please
@@aqarabhusnain1271 there is no link for this, instead of read_csv, use read_excel
Hi sir. I'm working on collaboratory. It's giving an error if I go with "species" how will it be resolved?
it doesn't matter what you use, the flow remains the same after loading the dataset
The video was great but i have a doubt what did we achieve at the end after applying so many model like what we did to data or changed something or classified them what did we do at end what is the reason why we trained the model i am a newbie
you can use the model to classify the flower type based on the input. check this video for remaining part th-cam.com/video/2LqrfEzuIMk/w-d-xo.html
@@HackersRealm thankyou soo much ❤️
do we have to download the csv file to run the notebook
yes
I'm running jupyter notebook using classification algorithm.... and I have worked on histograms, scatterplots and heatmaps.... i have a doubt in here.... that can we also draw pie charts and box plots using the same data?
And is there any perception like we can plot only some type of plot based on the data we have or we can plot all type of plots?
@@dhanabommakanti3620 it depends on the analysis you want to do, if you create box plot here, you can check for outliers. Each plot has specific insights we can get
What is the point of shuffling?
it will trained the data from different points
Upar ke modules execute ni hore ????kya kare?
which part is not executed?
Accuracy bar bar 100 aarha h
In last code I got 95%accuracy instead of 93 is this correct?
@@aarohigupta4286 yeah, the train test split might change each time if we run, so it's not an issue, to replicate same results, you can use random state in train_test_split.
Nice tutorial. ❤️
Thank you! 😊
How to save the model using pickle?
you can normally store it using the model variable
@@HackersRealm can u plz tell me how to do?
@@HensiThakkar Please connect through linkedin or insta for further queries!!!! Link in the description
hey sir, thank you for the amazing video!
is there a video how to handle csv files in os, i want to import data from os, a set of csv files and visualize them
any video please or documentation
you can see dogs vs cats classification and some other project videos, I have loaded data using os module and processed it
@@HackersRealm thanks for your reply, but in your video you have 2 files what if i have 3 files, the if is goning to be different how can i write my if please?
@@alamazahreh6423 you can add elif statement; you have to change the logic accordingly!!!
@@HackersRealm ok!!!!!
Part of the video is severely distorted when I attempt to watch it but when I hover over a piece of the video with my mouse, a preview of what the video should be appears clear.
i think the video is clear, it may be an network issue or in youtube. Please check it again as I didn't get the issue so far
Thanks brother
😇😇🤩
tqs for video
Im not getting the scatter plot properly i.e, Im not getting all the three points pointed
can any one pls help me out
what error you are facing?
At first I got the same problem. But in my case I have written the flower name incorrectly so after correcting It got fixed.
Too good
Glad you liked it!!!
Good teach knowledge
Thanks for your kind words!!!
bro if i am doing as a project how to proceed it
It is a project, i didn't get what you are asking....
sir here i'm facing error
AttributeError: module 'matplotlib' has no attribute 'scatterplot'
try to reinstall the module using pip, that may help
please continue series bro
This week, will post a video for regression project
[Errno 2] No such file or directory: 'iris.csv'
place the dataset file in same directory as the notebook file
@@HackersRealm yes I did that, but I thought that dataset was inbuilt in the library and does not need to be downloaded separately and placed in the directory
@@AK-cy3ql no for this one, you have to place in the directory
explained better than edureka
Glad it was helpful!!!
I need an explanation. I got Nothing until now
which part is confusing for you?
🤍
Awsm video can u check your dm actually i want to ask something related to AI course please check ur dm
starts adding PLSSSSS caption
it will automatically generated by youtube
@@HackersRealm you are not, you have to enable it, add to the other videos thx
@@saviovnn it's enabled, it will take some time to generate actually