Bayesian Neural Network

Hi,
I was looking at this tutorial BNN but it is not clear (at least to me) why one should run the beginning of the piece of code at input In [11] (instead the benchmark functions are clear); furthermore, why do we pick 500 samples (out of 5000)? Is there any way to find this hyperparameter?
Thanks a lot

Input [11] shows two ways to generate posterior predictions: either by using sample_posterior_predictive (the universal way), or building the posterior sample by replacing the input matrix in the computational graph (the alternative way you can do only in VI). The later is generating samples in the theano graph so it is faster. The beginning of input [11] shows how you can replace part of the graph to archive this.

There is no particular reason to use 500 samples, it is not a hyperparameter. You can improve the estimation by using more samples.