You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
However, for classification tasks, this may result in non-integer labels and one would, for example, fail to compute an f1 score with such a prediction. If you are interested, I would be happy to implement hard and / or soft voting for classification ensembles here.
The text was updated successfully, but these errors were encountered:
Hi @kaueltzen ! This is indeed true, however one could still convert it to discrete classes by putting a threshold. But I agree the latter makes more sense to be used in combinateion of return_prob=True. So what you suggest (hard and / or soft voting) makes sense! Please go ahead with what makes sense to you and happy to review :)
Hi,
thanks for the nice package!
I have a remark about the
EnsembleMODNetModel
class: thepredict
method always corresponds to the mean of the predictions of the ensemble:modnet/modnet/models/ensemble.py
Line 178 in e14188d
However, for classification tasks, this may result in non-integer labels and one would, for example, fail to compute an f1 score with such a prediction. If you are interested, I would be happy to implement hard and / or soft voting for classification ensembles here.
The text was updated successfully, but these errors were encountered: