sklearn-rvm
sklearn-rvm copied to clipboard
will it work for unbalanced data for classifier?
will it work for unbalanced data for classifier? for one hot data: only 0s and 1s in data is it possible to set class weights like https://scikit-learn.org/stable/modules/generated/sklearn.linear_model.LogisticRegression.html class_weight dict or ‘balanced’, default=None Weights associated with classes in the form {class_label: weight}. If not given, all classes are supposed to have weight one
It depends on how unbalanced the data is but it should work.
Currently we don't have class_weight implemented but it is definitely something that we will look into adding in the next versions of the model.