The problem with Bayesian neural network seems to be that it is primarily working for classification problems. Is it possible to adjust this neural network, or even use a different model if one exists, to predict a continuous value and also provide an uncertainty measure?
If it is of any use - I am attempting to predict the amount of chlorophyll present in a plant based off of a drone image. However, I also want to be able to visualize this uncertainty when I create a heatmap of the predicted chlorophyll for each pixel. My thought was that the predicted value could assume a color from the corresponding heatmap, and then the predictive strength (confidence) of that predicted value being accurate could be transformed to an alpha value. The end result would be then a 'faded' pixel if it has low confidence in its prediction.
If Bayes Linear Regression is a better alternative, is it still providing a confidence value with each associated prediction, or am I misunderstanding how it functions? If there are any known tutorials on the topic that I can be guided to, I think I would be thankful?