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
I wanted to test quality metrics of several different algorithms from crowdkit.aggregation.classification and found myself writing such kind of function:
That's because different models have different methods for retrieving scores. For example, MMSR has predict_score while almost all others have predict_proba. Some have field probas_ , while others don't.
This seems strange and inconsistent.
Feature description
Unify naming of predict_score functions and presence of probas_ field
The text was updated successfully, but these errors were encountered:
Thanks for the issue! Will simply adding predict_proba for M-MSR solve this? I assume we can just pass the scores through the softmax but I don't remember what these scores mathematically mean, need to read into the paper.
Thanks for the issue! Will simply adding predict_proba for M-MSR solve this? I assume we can just pass the scores through the softmax but I don't remember what these scores mathematically mean, need to read into the paper.
Yes, if all agreggators will have predict_proba, the issue should be considered solved. Also, presence of probas_ field should be made consistent, as it was confusing for me why some models have it, and others don't
Also, KOS aggregator does not have any probas at all. Is it algorithm's limitation or this can be added?
Problem description
I wanted to test quality metrics of several different algorithms from
crowdkit.aggregation.classification
and found myself writing such kind of function:That's because different models have different methods for retrieving scores. For example,
MMSR
haspredict_score
while almost all others havepredict_proba
. Some have fieldprobas_
, while others don't.This seems strange and inconsistent.
Feature description
Unify naming of
predict_score
functions and presence ofprobas_
fieldThe text was updated successfully, but these errors were encountered: