Please tell me that what is cross validation score,how it is different from the normal score and how to calculate it?
Cross Validation Score
There are two types of score, training accuracy/score, and cross validation score. Cross validation score is used to estimate the performance of our model. Since we need to check out the best model, cross validation score helps.
Actually when we are given the dataset, the first step is to preprocess data and than split it into two sets of ratio 80:20(percent, generally) namely training set and validation set. This means we will train our model only on 80% of dataset, and keep 20% of dataset to measure the performance of the model.
So when you talk about normal score you are talking about training score and when you talk about cross validation score, you are talking about score of your model on that 20% of dataset, which your model is not trained on .
Hope this cleared your doubt.
I hope I’ve cleared your doubt. I ask you to please rate your experience here
Your feedback is very important. It helps us improve our platform and hence provide you
the learning experience you deserve.
On the off chance, you still have some questions or not find the answers satisfactory, you may reopen
the doubt.