-
Notifications
You must be signed in to change notification settings - Fork 50
Description
Hi, Chengcheng Guo and Bo Zhao:
Thanks for your thorough research and clean codes. However, I have some questions about uncertainty based implementation.
As mentioned in the DeepCore paper, samples with lower confidence may have a greater impact on model optimization than those with higher confidence, and should therefore be included in the coreset. But the implementation here actually calculate the inverse scores of uncertainty.
Take entropy as an example, np.log(preds + 1e-6) * preds is the negative of the entropy, so np.argsort(scores)[::-1][:self.coreset_size] select the samples with low entropy (uncertainty). This confused me a lot, which shows inconsistant implementation with the statement in the paper. Is there some bugs in the implementation?
Data-reindeer