We have an empirical equation to evaluate the tolerance parameter, but many researchers have used the method of K-Fold Cross Validation to evaluate it.
Can someone please let me know how to do it that way.
When we learn the parameters of a predictive function and evaluate it on the same data, we make an error: A model that repeats the labels of the samples it's just seen would have a perfect score, but would not be able to predict anything useful on yet-unseen data. Overfitting is the term used to describe this situation. As a rule of thumb, when doing a (supervised) machine learning experiment, a portion of the available data is set aside as a test set X, y.
You can get implementing process by using Python or MATLAB through -
Thanks a heap brother, but I agin reiterate that using this K-Fold Cross Validation, how can I find a parameter specific to SVR, called as Tolerance Parameter?