-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use active learning based on uncertainty to augment dataset #35
base: main
Are you sure you want to change the base?
Conversation
Output prediction_std on Based on this plot, slices 416 --> 440 have the highest STD. Let's look at prediction STD from these slices: |
Few things to consider:
|
How reliable is STD computed on very few pixels?In this example, STD is 0.000305 (relatively low): But there is no pixel picked up by majority voting! In this other example, STD is high (0.03803): But the segmentation is pretty good! So, I need to find another way to filter based on STD (or another metric...) |
Few ideas to address #35 (comment)
|
This PR introduces the following algorithm:
derivatives/labels_active_learning
Fixes #31