Skip to content

Commit 6781129

Browse files
lukmaztensorflower-gardener
authored andcommitted
Remove some backticks from docstrings that do not render properly.
PiperOrigin-RevId: 739231774
1 parent e8b7025 commit 6781129

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tensorflow_probability/python/experimental/mcmc/windowed_sampling.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -642,12 +642,12 @@ def windowed_adaptive_nuts(n_draws,
642642
structure should broadcast with `current_state`. For example, if the
643643
initial state is
644644
645-
```
645+
`
646646
{
647647
'a': tf.zeros(n_chains),
648648
'b': tf.zeros([n_chains, n_features]),
649649
}
650-
```
650+
`
651651
652652
then any of `1.`, `{'a': 1., 'b': 1.}`, or
653653
`{'a': tf.ones(n_chains), 'b': tf.ones([n_chains, n_features])}` will
@@ -770,12 +770,12 @@ def windowed_adaptive_hmc(n_draws,
770770
structure should broadcast with `current_state`. For example, if the
771771
initial state is
772772
773-
```
773+
`
774774
{
775775
'a': tf.zeros(n_chains),
776776
'b': tf.zeros([n_chains, n_features]),
777777
}
778-
```
778+
`
779779
780780
then any of `1.`, `{'a': 1., 'b': 1.}`, or
781781
`{'a': tf.ones(n_chains), 'b': tf.ones([n_chains, n_features])}` will

0 commit comments

Comments
 (0)