We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents aebd128 + ca94cec commit e37e9edCopy full SHA for e37e9ed
libact/query_strategies/multilabel/adaptive_active_learning.py
@@ -120,7 +120,7 @@ def make_query(self):
120
candidate_idx_set = set()
121
for b in self.betas:
122
# score shape = (len(X_pool), )
123
- score = separation_margin**b * label_cardinality**(1.-b)
+ score = uncertainty**b * label_cardinality**(1.-b)
124
for idx in np.where(score == np.max(score))[0]:
125
candidate_idx_set.add(idx)
126
0 commit comments