Skip to content

Commit

Permalink
Fix unbalanced backticks in docstring
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 617982396
  • Loading branch information
santoso-wijaya authored and tensorflower-gardener committed Mar 21, 2024
1 parent f7f04c8 commit 13a1117
Showing 1 changed file with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -642,9 +642,11 @@ def windowed_adaptive_nuts(n_draws,
structure should broadcast with `current_state`. For example, if the
initial state is
```
{'a': tf.zeros(n_chains),
'b': tf.zeros([n_chains, n_features])}
```
{
'a': tf.zeros(n_chains),
'b': tf.zeros([n_chains, n_features]),
}
```
then any of `1.`, `{'a': 1., 'b': 1.}`, or
`{'a': tf.ones(n_chains), 'b': tf.ones([n_chains, n_features])}` will
work. Defaults to the dimension of the log density to the 0.25 power.
Expand Down

0 comments on commit 13a1117

Please sign in to comment.