I am creating a RandomForestClassifier model that uses biomarker measurements and clinical measurements to predict a disease (binary). There are an equal amount of people who do and do not develop this disease. I have been using GridSearchCV to tune the hyperparameters with cv=5. Through this cross validation the best AUC score is 0.79. When I apply these changes for the testing set, the AUC score is 0.66.
What does this mean? Does it mean the model is overfitting? If so, how I can I fix that?
Thanks!