MCPcopy Create free account
hub / github.com/cure-lab/deep-active-learning / RandomSampling

Class RandomSampling

query_strategies/random_sampling.py:5–11  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3import pdb
4
5class RandomSampling(Strategy):
6 def __init__(self, X, Y, X_te, Y_te, idxs_lb, net, handler, args):
7 super(RandomSampling, self).__init__(X, Y, X_te, Y_te, idxs_lb, net, handler, args)
8
9 def query(self, n):
10 inds = np.where(self.idxs_lb==0)[0]
11 return inds[np.random.permutation(len(inds))][:n]

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected