XGboost training, validation and testing
Hello, I have a question about handling test datasets in XGBoost. Here's my current approach: I'm using 10-fold cross-validation for model training and validationI keep a separate test dataset completely excluded during this training phase (hide and exclude in the table before launching the model)After training, I manually generate predictions on this test dataset (save predicted to table and I un...