Scaling Kaggle Competitions Using XGBoost: Part 4
PyImageSearch
JANUARY 23, 2023
Applying XGBoost to Our Dataset Next, we will do some exploratory data analysis and prepare the data for feeding the model. unique() # check the label distribution lblDist = sns.countplot(x='quality', data=wineDf) On Lines 33 and 34 , we read the csv file and then display the unique labels we are dealing with.
Let's personalize your content