I am using catboost classifier for my binary classification model where I have a highly imbalance dataset of 0 -> 115000 & 1 -> 10000.
Can someone please guide me in how to use the following parameters in catboostclassifier:
1. class_weights
2. scale_pos_weight ?
From the documentation, I am under the impression that I can use Ratio of sum of negative class by sum of positive class i.e. 115000/10000=11.5 as the input for scale_pos_weight but I am not sure .
Please let me know what exact values to use for these two parameters and method to derive that value?
Thanks