Should Cross Validation Score be performed on original or split data?
问题 When I want to evaluate my model with cross validation, should I perform cross validation on original (data thats not split on train and test) or on train / test data? I know that training data is used for fitting the model, and testing for evaluating. If I use cross validation, should I still split the data into train and test, or not? features = df.iloc[:,4:-1] results = df.iloc[:,-1] x_train, x_test, y_train, y_test = train_test_split(features, results, test_size=0.3, random_state=0) clf =