Introduction to Cross Validation | Different types of Cross Validation techniques | Machine Learning

In this tutorial, we're going to talk about the very important concept of Cross Validation and how does it help in avoiding overfitting, making our models more robust, finding the optimal hyperparameters for our data and better generalize to the future data.
We'll be looking at a very popular implementation of cross validation, which is K-Fold Cross validation, step by step. We'll understand in-depth how it works and how do others like Stratified K-Fold, LOO-CV, Repeated K-Fold, Repeated Stratified K-Fold work.
These topics are so important that they should be grasped before learning how to fit a machine learning algorithm to a dataset and celebrate when the accuracy shows 98%!
I've uploaded all the relevant code and datasets used here (and all other tutorials for that matter) on my github page which is accessible here:
Link:
github.com/rachittoshniwal/ma...
If you like my content, please don not forget to upvote this video and subscribe to my channel.
If you have any qualms regarding any of the content here, please feel free to comment below and I'll be happy to assist you in whatever capacity possible.
Thank you!

Пікірлер: 11

  • @mounicayelchuri2768
    @mounicayelchuri27683 жыл бұрын

    Very underrated channel ... Awesome explaination!!

  • @rachittoshniwal

    @rachittoshniwal

    3 жыл бұрын

    Hahaha! Thanks Mounica!

  • @chiragsharma9430
    @chiragsharma94303 жыл бұрын

    Greatly explained all of them. This is what I was looking for. Keep making such good videos.

  • @rachittoshniwal

    @rachittoshniwal

    3 жыл бұрын

    Thanks Chirag!

  • @sivavs8527
    @sivavs85273 жыл бұрын

    Clear explanation sir. Wat I was looking for.. All in one🙏🙏🙏🙏

  • @rachittoshniwal

    @rachittoshniwal

    3 жыл бұрын

    Thanks!

  • @hectormotsepe1581
    @hectormotsepe15813 жыл бұрын

    Thank you Rachit, Best channel

  • @rachittoshniwal

    @rachittoshniwal

    3 жыл бұрын

    Hi Hector! Best channel... I'm not so sure😂 there are so many wonderful channels out there! Thanks for the kind words btw! :)

  • @ameydesai6761
    @ameydesai67612 жыл бұрын

    nice explaination,will u plz u provide an end to end model for an imbalanced data set

  • @sunnyarora4916
    @sunnyarora49163 жыл бұрын

    you started with the classification problems, is it the same with regression problems ?

  • @rachittoshniwal

    @rachittoshniwal

    3 жыл бұрын

    Oh, yes. It's the same with regression. Except that we use the normal KFold class, instead of the Stratified KFold which we use for classification