You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
That would also make training models two times faster.
Problem might be: you compute mean and stddev over the 10 folds for each model.
Maybe, you will not trust mean and stddev computed over just 5 folds.
This being said, maybe you want to do iterated testing and do those stats over something like
50 repeats (e.g. we train/test on random partitions of 80%/20% and we repeat this 50
times for each model).
The text was updated successfully, but these errors were encountered:
That would also make training models two times faster.
Problem might be: you compute mean and stddev over the 10 folds for each model.
Maybe, you will not trust mean and stddev computed over just 5 folds.
This being said, maybe you want to do iterated testing and do those stats over something like
50 repeats (e.g. we train/test on random partitions of 80%/20% and we repeat this 50
times for each model).
The text was updated successfully, but these errors were encountered: