-
Is it possible to use BAAL just for the purpose of obtaining accurate uncertainty scores at the time of prediction, but not use the Active Learning loop? In other words, I don't want to do the back and forth between training and labelling, but only obtain accurate uncertainty scores. Also, in terms of methods, I can use only dropconnect because resnets don't have dropouts. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
Hello! Yes it is often the case that we want to do uncertainty estimation at test time. If you patch your Resnet with MCDropConnect, the model will be stochastic and you can do multiple forward pass per input. Then you can do the following:
This link should help you set everything up, if something is missing, let us know and we can improve the documentation. https://baal.readthedocs.io/en/latest/faq.html#how-to-predict-uncertainty-per-sample-in-a-dataset |
Beta Was this translation helpful? Give feedback.
Hello!
Yes it is often the case that we want to do uncertainty estimation at test time.
If you patch your Resnet with MCDropConnect, the model will be stochastic and you can do multiple forward pass per input. Then you can do the following:
This link should help you set everything up, if something is missing, let us know and we can improve the documentation.
https://baal.readthedocs.io/en/latest/faq.html#how-to-predict-uncertainty-per-sample-in-a-dataset