Cross validation on data
Hi data science community, I have question related to cross validation. I have two files one is train.csv and other one is test.csv. test.csv will be unseen data and we will not use it in training. So I am using train.csv which I further split into train_1 and validation sets using train split. I want to apply cross validation (K-Fold). Should I apply cross validation on train_1 or on whole training data which is train.csv. I am but confused. One more thing about hyper paramter tuning. I am using RandomizedSerachCV and if i want to give cv=None then it is fine as i don’t want to apply cross validation again. Thanks for any help.