ntucllab / libact

Pool-based active learning in Python
http://libact.readthedocs.org/
BSD 2-Clause "Simplified" License
777 stars 175 forks source link

HintSVM Question #154

Open jerrycshen opened 5 years ago

jerrycshen commented 5 years ago

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)) ?