Skip to content

Commit bde4a7b

Browse files
committed
doc link error fix
1 parent 1fb45f1 commit bde4a7b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/variational_inference/bayesian_neural_network_advi.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -246,9 +246,9 @@
246246
"source": [
247247
"### Variational Inference: Scaling model complexity\n",
248248
"\n",
249-
"We could now just run a MCMC sampler like {func}`~pymc3.step_methods.hmc.nuts.NUTS` which works pretty well in this case, but as I already mentioned, this will become very slow as we scale our model up to deeper architectures with more layers.\n",
249+
"We could now just run a MCMC sampler like {func}`~pymc3.NUTS` which works pretty well in this case, but as I already mentioned, this will become very slow as we scale our model up to deeper architectures with more layers.\n",
250250
"\n",
251-
"Instead, we will use the {func}`~pymc3.variational.inference.ADVI` variational inference algorithm which was added to `PyMC3`, and updated to use the operator variational inference (OPVI) framework. This is much faster and will scale better. Note, that this is a mean-field approximation so we ignore correlations in the posterior."
251+
"Instead, we will use the {func}`~pymc3.ADVI` variational inference algorithm which was added to `PyMC3`, and updated to use the operator variational inference (OPVI) framework. This is much faster and will scale better. Note, that this is a mean-field approximation so we ignore correlations in the posterior."
252252
]
253253
},
254254
{

0 commit comments

Comments
 (0)