Siddhardhan, very good explain everything.Thank you
@Siddhardhan3 жыл бұрын
😇😇
@vijayramaraju35223 жыл бұрын
Sir, your way of teaching is excellent, i don't have any words to tell you about your teaching and presentation, Please go through all machine learning models with Maths from Scratch, and if possible, make 3 or 4 more case studies on every model that your build from scratch. thanks, thanks a lot......
@IRVids884 ай бұрын
8:20 Hello Sir, why are we inserting the targets to X_train?
@alirezamarahemi23522 жыл бұрын
The problem with the model you have created lies within the following lines of code: for data in neighbors: label = [] label.append(data[-1]) It should be changed in this way: label = [] for data in neighbors: label.append(data[-1]) The list of labels gets empty in every iteration. If you apply the change, your model's accuracy will be 72% just as exact as the KNNClassifier in sklearn library.
@clxdyy.luveditxs4 ай бұрын
Amazing!
@mohamedzl27355 ай бұрын
The problem with the model lies in those lines of code: for data in neighbors: label = [] label.append(data[-1]) It should be changed in this way: label = [data[-1] for data in neighbors] The list of labels gets empty in every iteration. If you apply the change, your model's accuracy will be 72% just as exact as the KNNClassifier in sklearn library.
@najeebah62432 жыл бұрын
Sir, can you please do a tutorial on machine learning algorithm to predict bus arrival time
@OmkarPrajapati-j5v7 ай бұрын
i get an error that KNN_classifier() takes no arguments.pls help
@AHMADKELIX2 жыл бұрын
permission to learn sir. thank you
@charugullasanthoshkumar28702 жыл бұрын
can you please help me with seperating features and target how to split them???
@vijayramaraju35223 жыл бұрын
Sir Please Continue Videos (Tutorials)
@sandys40093 жыл бұрын
Sir can u please do a prj on real face emotiin from the scratch
@nguyentrunguc12 Жыл бұрын
Can you turn on translated subtitles. Thank you!
@piyushpathak73113 жыл бұрын
Sir please upload full videos of xgboost and DBSCAN, ensemble learning algorithms,trees algorithm with detailed explanation and implementation plz 🙏 sir
@Siddhardhan3 жыл бұрын
yeah. sure
@81_PriyanshuRaj Жыл бұрын
Getting error:- 'KNN_classifier' object has no attribute 'distance_metrics'
@mayankchandak1601 Жыл бұрын
remove the s at the end or check if you have named it something else