https://github.com/ntucllab/libact/blob/e37e9ed6c36febe701d84b2d495c958ab02f0bc8/libact/query_strategies/hintsvm.py#L160 I think every query we should select the closest point not the farthest point. right? so the code should be `idx = int(np.argmin(p_val)) ` ?
libact/libact/query_strategies/hintsvm.py
Line 160 in e37e9ed
I think every query we should select the closest point not the farthest point. right?
so the code should be
idx = int(np.argmin(p_val))?