Skip to content

Commit

Permalink
Fix 'D' typo in getting-started.tex. (#864)
Browse files Browse the repository at this point in the history
  • Loading branch information
bkellerman authored and dustinvtran committed Mar 7, 2018
1 parent 2a78243 commit 0e3457b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/tex/getting-started.tex
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,8 @@ \subsubsection{Your first Edward program}
inference. Specify a normal approximation over the weights and biases.

\begin{lstlisting}[language=Python]
qW_0 = Normal(loc=tf.get_variable("qW_0/loc", [D, 2]),
scale=tf.nn.softplus(tf.get_variable("qW_0/scale", [D, 2])))
qW_0 = Normal(loc=tf.get_variable("qW_0/loc", [1, 2]),
scale=tf.nn.softplus(tf.get_variable("qW_0/scale", [1, 2])))
qW_1 = Normal(loc=tf.get_variable("qW_1/loc", [2, 1]),
scale=tf.nn.softplus(tf.get_variable("qW_1/scale", [2, 1])))
qb_0 = Normal(loc=tf.get_variable("qb_0/loc", [2]),
Expand Down

0 comments on commit 0e3457b

Please sign in to comment.