You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Can this library only use Gaussian distribution as prior distribution? Are there other prior distributions?
Another question is that if the input data and the prior distribution are Gaussian distribution, is the output of the network a Gaussian distribution?
The text was updated successfully, but these errors were encountered:
I have a similar question. I trained a neural network for a regression task with several Bayesian layers. But the generated "CI acc" by "evaluate_regression" is really low. I guess it is because the original or predicted Y does not fit a Gaussian distribution.
I have been using this library for regressions tasks where the target is deviated from a Gaussian distribution. By doing target (Y) distribution shaping (e.g. logNormal, Box-Cox, Gamma fit) you can improve your results, both in terms of convergence rate during training and error in the predictions for the validation set.
The easiest way to do it is by applying the transformation during the pre-processing. Of course, you will need to revert it once you want your data back into its original space
Can this library only use Gaussian distribution as prior distribution? Are there other prior distributions?
Another question is that if the input data and the prior distribution are Gaussian distribution, is the output of the network a Gaussian distribution?
The text was updated successfully, but these errors were encountered: