Training Data Vs Test Data Vs Validation Data| Krish Naik

  Рет қаралды 54,694

Krish Naik Hindi

Krish Naik Hindi

Күн бұрын

Пікірлер: 43
@netviz8673
@netviz8673 Ай бұрын
when data set is given to create a model then train dataset is on which the model is trained and it usually uses 70-80% of the data set. Test data uses 20% of the data set and is used for model performance analysis, prediction is made and performance metrics is checked. Now validation data is used for model hyperparameter tuning. We take the data slightly from the training data set. Using cross validation the validation data is obtained from training data set. CV=5 means 5 experiments. If total training data is 8000 then 8000/5 = 1600 means for every cross validation the starting 1600 data points will be used as validation data and the rest of 6400 data points will be used as train data and the accuracy is obtained for the first experiment. In second experiment when cross validation is 2 then then next 1600 data points will be used as validation data and first 1600data points + next 4800 data points = 6400 data points will be used for train data set and so on. So with every exp the validation data and train data set vary a little.
@zaafirc369
@zaafirc369 2 жыл бұрын
Thank you Clearly explained as always ! Is it possible to implement an example of cross validation and hyper parameter tuning on python pls? 🙏
@sukruthraghavendra7305
@sukruthraghavendra7305 10 ай бұрын
Perfectly explained sir understood very well
@MuhammadJunaid-yr8jd
@MuhammadJunaid-yr8jd 4 ай бұрын
Perfectly explained sir understood very well Thanks a lot sir
@anjalipes
@anjalipes Ай бұрын
Thank you for the lovely explanation sir. I have a doubt in the validation data, once you have taken the mean or Avg of the CV, what do we do next with that mean? how does it help in the performance of your model? Does this impact testing data?
@murthy33
@murthy33 Жыл бұрын
Please upload English videos. It is very helpful
@hunterworrier6769
@hunterworrier6769 2 жыл бұрын
Krish bro... U should provide simple code of this all video too
@richadhiman3300
@richadhiman3300 Жыл бұрын
Beautifully explained sir...
@iamalien8327
@iamalien8327 4 ай бұрын
sir thanks for creating the videos sir kindly guide which book to refer for making the notes
@mahantachauhan4461
@mahantachauhan4461 10 ай бұрын
Thanks for the such an informative video 👏👏
@muazamazam7115
@muazamazam7115 Жыл бұрын
Thank you for making this piece of sweet pie ❤️🌹
@AlAmin-xy5ff
@AlAmin-xy5ff 2 жыл бұрын
excellent
@neal_indian555
@neal_indian555 Жыл бұрын
Sir you are great Akshay Kumar is not Boss You are the BOSS
@theunscripted643
@theunscripted643 Ай бұрын
Ur so amazing sir ❤
@123vijit
@123vijit 2 жыл бұрын
What is hyperparameter?
@jyotikapatil2354
@jyotikapatil2354 Жыл бұрын
This was cross-validation. How hyperparameter tuning is done?
@rohitjana7461
@rohitjana7461 2 ай бұрын
Thank you sir ☺
@bivasbisht1244
@bivasbisht1244 2 жыл бұрын
Why hyperparameter tuning is done after training the model ? Shouldn’t it be done before traning the model , and then train the model based on those parameters ?
@fran9426
@fran9426 Жыл бұрын
You do both. Once you have done hyperparameter tuning you can then train the final model with the tunes values on all the training data
@jaiprakashsingh756
@jaiprakashsingh756 Жыл бұрын
sir, could you please share some notes so that we can revice all the bulletin points.
@divyadewangan6123
@divyadewangan6123 2 жыл бұрын
you are the best person to explain any topic .Thanx🥰
@omdodmani3205
@omdodmani3205 Жыл бұрын
if test data is used for accuracy , then which accuracy is shown by the cross validation method ?
@swagatsanketpriyadarsan6231
@swagatsanketpriyadarsan6231 9 ай бұрын
I just gave the 1000th like. :P
@hunterworrier6769
@hunterworrier6769 2 жыл бұрын
But very helpful
@vaibhvkushwah
@vaibhvkushwah 4 ай бұрын
kafi kya bahut jyda acha tha
@abhinavrajsaxena789
@abhinavrajsaxena789 11 ай бұрын
6400
@AdityaSharma-yc8yt
@AdityaSharma-yc8yt 10 ай бұрын
Didn't liked it !
@vibhu613
@vibhu613 Жыл бұрын
@sketchytv1321
@sketchytv1321 2 жыл бұрын
خوش رہو بہت اعلیٰ کام کر رہے ہیں ۔
@zaafirc369
@zaafirc369 2 жыл бұрын
ROC AUC explanation also pls
@riya-tb6sj
@riya-tb6sj Жыл бұрын
Hello sir i m 12 Ai frst tym i watched ur video and frst tym understood concept plz make more videos of 12 syllabus cbse
@milansood8240
@milansood8240 Жыл бұрын
thank you sir, I'm enrolled in upgrad Data Science program and not satisfied with it as the content is not much special like yours.
@musicallystatus5368
@musicallystatus5368 2 жыл бұрын
@9:52 why you divide for cross velidation= 5
@akshaymondal1372
@akshaymondal1372 2 жыл бұрын
Sir also make a video on data warehouse data lakes
@vasimshaikh9857
@vasimshaikh9857 Жыл бұрын
Thank you sir 💖💖💖💖💖
@maths_impact
@maths_impact Жыл бұрын
Outstanding sir
@neal_indian555
@neal_indian555 Жыл бұрын
Hukum ka ekka BOSS
@PS-rh8vy
@PS-rh8vy Жыл бұрын
Superb ❤
@rds9815
@rds9815 6 ай бұрын
Hi krish Please let me know what is x_train ,y_train and x_test ,y_test and how this process works on the data set including the mathematical equation I have a lot of confusion on this. Please make a separate video on this Both languages of English and Hindi
@sumitlasiwa7152
@sumitlasiwa7152 4 күн бұрын
train and test data is further divided into independent and dependent features. x-train is for independent and y-train for dependent of train dataset. This is done to let model know the difference between independent and dependent features. Similarly, same thing for test dataset. In test dataset this is done to compare the model prediction and actual value(y-test) to know the accuracy.
@rds9815
@rds9815 3 күн бұрын
@@sumitlasiwa7152 Thank you doubt cleared
@TheNeu2ron
@TheNeu2ron 6 ай бұрын
Hindi-Cross Validation Using Python In Machine Learning|Krish Naik
12:49
Krish Naik Hindi
Рет қаралды 22 М.
Train Test Split | Training and Testing data | Machine Learning
10:07
отомстил?
00:56
История одного вокалиста
Рет қаралды 7 МЛН
The Joker wanted to stand at the front, but unexpectedly was beaten up by Officer Rabbit
00:12
The day of the sea 😂 #shorts by Leisi Crazy
00:22
Leisi Crazy
Рет қаралды 1,7 МЛН
154 - Understanding the training and validation loss curves
27:47
DigitalSreeni
Рет қаралды 106 М.
Hindi-Types Of Cross Validation In Machine Learning|Krish Naik
18:54
Krish Naik Hindi
Рет қаралды 36 М.
Entropy (for data science) Clearly Explained!!!
16:35
StatQuest with Josh Starmer
Рет қаралды 609 М.
What is Cross Validation and its types?
18:15
Krish Naik
Рет қаралды 229 М.
Train, Test, & Validation Sets explained
6:58
deeplizard
Рет қаралды 204 М.
Hindi- Ensemble Techniques-Bagging Vs Boosting|Krish Naik
11:55
Krish Naik Hindi
Рет қаралды 42 М.
отомстил?
00:56
История одного вокалиста
Рет қаралды 7 МЛН