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

Method __init__

query_strategies/random_sampling.py:6–7  ·  view source on GitHub ↗
(self, X, Y, X_te, Y_te, idxs_lb, net, handler, args)

Source from the content-addressed store, hash-verified

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]

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected