I am trying to obtain the value of the parameters in numpyro. When I run MCMC I could do something like
mcmc.get_samples()[‘z’]
However, I am not sure what is the equivalent when I run the SVI.
After,
result = svi.run (model, …)
The following gives a list of values but I am unable to understand what they mean?
result.params
Or What does the following mean ?
‘auto_arn__0$params’
Any help is appreciated.