I'm running an XGBoost binary classification model with Training 375 observation and 125 Testing observations and 19 features. Below are my arguments:
Boosted Tree Model Specification (classification)
Main Arguments:
mtry = 13
trees = 100
min_n = 3
tree_depth = 5
learn_rate = 1.57515292756891e-09
loss_reduction = 0.801337205143451
sample_size = 0.967102140800562
Computational engine: xgboost
The model performs well
But there is no distribution in the class probability .50001 vs .49999
I'm new to using XGBoost, is this an overfitting issue, sample size issue, am I miss specifying the arguments? I feel like there is an obvious issue that I would love to be educated about.
Using R, tidymodels