Let me know what you think about this video! Which model shall we do next?
@Thanos-gg5ru3 жыл бұрын
Hey Giannis thanks for the video. Could you please make a video of applying sklearn models on time-series data(especially univariate) ? I think its interesting because its a bit different and there are not many examples about this on the internet.
@balakrishna57113 жыл бұрын
Hi, could you please let me know how to read 60 k files of 3 TB data into jupyter notebook, please help me or refer any source, it's very urgent for my work. Could you please reply for the same. Thanks...
@hristo88353 жыл бұрын
Great Video. As to model ideas for the future, how about a recommender model to select items based on similar attributes rather than the one everyone does to recommend movies via ratings.
@21121990jay3 жыл бұрын
Can you please make a video on multilinear Regression model with deployment.
@treyhannam38063 жыл бұрын
This is great! I am wondering if you could use GridSearchCV instead of writing out a loop when tuning the random forest model? If you can, is the method equally as useful?
@Kon33Krit33 Жыл бұрын
Εύχομαι μέσα από την καρδιά μου τη βοήθεια που μας προσφέρεις να την απολαύσεις κ' με το παραπάνω...
@YiannisPi Жыл бұрын
Nase kala Konstantino!
@abidhossain4412 Жыл бұрын
This channel is the best. Please do more videos on other machine learning models.
@leandrop.79632 жыл бұрын
Mate, I need to say, You are a legend, seriously this is what everyone look around and can't find! So happy to have found this that I have to comment. Such a great work, deserve to be said. Congrats, I'm huge fan after that.
@MahmoudNasrCPA11 ай бұрын
Thank you for this great tutorial
@andreasp.1893 жыл бұрын
Another excellent, well structured and informative video added to the Data science world by Yiannis who doesn't stop to impress us! Keep it rolling!!!
@YiannisPi3 жыл бұрын
Thanks again!
@abbeynguyen83962 жыл бұрын
Thank you so much for your videos. Please make more videos about data visualization.
@tomjohnas93043 жыл бұрын
Nice!! Been waiting for this!
@YiannisPi3 жыл бұрын
Enjoy
@mapac88664 ай бұрын
very good !! your vids help a lot
@BlessedNumbers2 жыл бұрын
Hello Sir, Why you are not making any videos, it was so great and helpful
@chrysis79893 жыл бұрын
Thanks Yiannis! Keep up the good work!
@tarigahmed86373 жыл бұрын
Thank you Yiannis, great as always, I have little suggestion about previous episodes, If you can make more projects regarding sql,and joins, (project that can link excel with sql again) Also if you can make some projects with tableau, like sales insights or any projects. I didn't reach these today video yet to give my opinion 😅 Thank you
@YiannisPi3 жыл бұрын
Thanks for the idea!
@hristo88353 жыл бұрын
Thank you Yiannis. Great content!
@YiannisPi3 жыл бұрын
Glad you liked it!
@Rodaportal3 жыл бұрын
Well detailed, keep it up!
@YiannisPi3 жыл бұрын
That's the plan!
@jbj9262 жыл бұрын
Hello, For the calf.best_estimator_, my output cell is not displaying all of the prams and putting …) at the end. How do i get the output to show everything?
@Downesy2303 жыл бұрын
Great video. If I have no 'new' data, so should I fit the XGBoost model on the training set (.fit(X_train,y_train)) only and then predict y with only X_test (.predict(X_test))?
@jerrerock Жыл бұрын
Why do you take all of the data in the XG Boost clf.fit(X,Y), I have been learned to always split test, train, validation cause otherwise the model is overfitting and can't be tested??
@cowardlyanonymous24462 жыл бұрын
thank youuuu!!
@shadrackdarku86133 жыл бұрын
great content keep the good work up .Bravo
@saifilicious1749Ай бұрын
brother when im trying to load the csv file at the end of "unseen data" still its showing the exited column,i just copied the code you gave, whereas in your video there is no exited column. Whats the reason?dont your csv file has that column?
@alasternyaude25823 жыл бұрын
amazing work!
@YiannisPi3 жыл бұрын
Thank you! Cheers!
@paulntalo14253 жыл бұрын
Thank you for this great video
@YiannisPi3 жыл бұрын
Glad you enjoyed it!
@jongcheulkim72843 жыл бұрын
Thank you.
@louatisofiene91143 жыл бұрын
is it okay to work with 49% of misclassified i have same problem BTW
@tristanhughes64093 жыл бұрын
I've tried to follow this, but having problems with GraphViz. It says: AttributeError: module 'graphviz.backend' has no attribute 'ENCODING' . Does anyone have any ideas? The video is very informative, thank you
@ajithkurianphotography61813 жыл бұрын
How to give a single input for prediction
@ifeanyiokwuazu32253 жыл бұрын
Wow
@josephmart75282 жыл бұрын
I think you made a mistake in your confusion matrix plot for the final_model when you used (classes=rf.classes_) It should be like this ==>> plot_confusion_matrix(cm_norm, classes=final_model .classes_) You should have used (final_model .classes_) not plot_confusion_matrix(cm_norm, classes=rf.classes_) My final model gave 0.79 TP when I used [classes=final_model .classes_]