The Bayes Theorem provides a principled way to update knowledge (belief) from data. With prior belief, and given some new data, we can update our belief a posteriori following the computation. This may be the essence of learning - for machines as well as for humans.
CNNs are well-suited to process images, with the Deep Image Prior [1] embedded in their architectures. When taking in task-specific data, the CNN updates its weights and wraps itself around the task. This is how a CNN learns to accomplish a specific image analysis task.
However, for a Bayesian, something is missing here. In the Bayes land, nothing is absolutely certain; our prior belief is probabilistic, and posterior belief is also probabilistic [2]. Unless one has seen all the data in the world, the posterior distribution likely maintains some width - which translates into uncertainty. The predominant maximum likelihood way of deep learning, in contrast, goes from one deterministic set of weights (random initialization) to another deterministic set of weights (final converged solution). Hence, uncertainty is missing and silent failure [3] may occur.
Our 2022 MICCAI paper [4] introduces a practical way to infer the Bayesian uncertainty of the powerful nnU-Net, such that it provides uncertainty quantification (UQ) along with its organ segmentation. Our later MELBA paper [5] substantially strengthens the computational foundation of UQ, built upon Statistical Physics simulations*. In short, we infer the high-dimensional posterior probability distribution of weights, which is practically intractable, with scalable computation. The series of work has important implications for clinical image analysis and other life-critical tasks, as it enables automatic identification of black-box overconfidence (that ruin the reputation of AI!) when e.g. a new patient comes but deviates from the training cohort. Being honest about uncertainty is a step towards trustworthiness.
The oriental Master taught us that real knowledge is not only to know what you know, but also to know what you do not know [6]. The same ethos that makes humans humble makes AI trustworthy.