I'm quite new to tf probability and I've recently started to use the sts library.
How ca I estimate the latent state noise and the observation noise using both, mcmc and variational inference?
As an example, let's say that I have a time series that follows a random walk:
model = sts.LocalLevel()
model = sts.Sum([model])
sts_model = model.make_state_space_model(num_timesteps=100, param_vals=[observation_std, state_std])
sample = sts_model.samlpe(1)
Now my sample is drawn from the state space model distribution. Let's say that I don't know the observation_std and state_std, how can I use mcmc and vi to estimate them from the sample? Could somebody provide an example?
I've already posted the question as a github issue because I didn't know this group existed, but I believe this is a better place for such a question.