DiscriminativeActiveLearning icon indicating copy to clipboard operation
DiscriminativeActiveLearning copied to clipboard

Code and website for DAL (Discriminative Active Learning) - a new active learning algorithm for neural networks in the batch setting. For the blog:

Results 2 DiscriminativeActiveLearning issues
Sort by recently updated
recently updated
newest added

thanks for your share, could you please provide your data

`unlabeled_idx = np.random.choice(unlabeled_idx, np.min([labeled_idx.shape[0]*10, unlabeled_idx.size]), replace=False)` I suppose the reason for this line is that you want a somewhat balanced train set for the discriminator. But when you do the...