A repository to store my experiments with active learning
Current Approach:
- Train a CNN model on labelled cifar10 images
- Use the trained model to make predictions on the unlabelled images of cats and dogs
- If the most probable class as predicted by the trained network has low probability score, log the respective image to the weights and biases dashboard so that it can be labelled by humans and then added to the pool of training images.
- Instead of logging and labelling(by human) all images with low probability score, we can find out classes that the neural network is having trouble classifying using the confusion matrix and then only log images from those classes to the weights and biases dashboard to be labelled by humans.