(learner, X, n_instances=1)
| 67 | return random_subset[idx] |
| 68 | |
| 69 | def uniform(learner, X, n_instances=1): |
| 70 | return np.random.choice(range(len(X)), size=n_instances, replace=False) |
| 71 | |
| 72 | """ |
| 73 | Training the ActiveLearner |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…