Skip to content

Commit

Permalink
Fix typo: 'ponts' to 'points' (#909)
Browse files Browse the repository at this point in the history
  • Loading branch information
dongkwan-kim authored and dustinvtran committed Jul 25, 2018
1 parent b33775c commit 352596c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/tex/tutorials/bayesian-neural-network.tex
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ \subsection{Bayesian Neural Network}
h = tf.matmul(h, W_2) + b_2
return tf.reshape(h, [-1])

N = 40 # number of data ponts
N = 40 # number of data points
D = 1 # number of features

W_0 = Normal(loc=tf.zeros([D, 10]), scale=tf.ones([D, 10]))
Expand Down
2 changes: 1 addition & 1 deletion notebooks/getting_started.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
"source": [
"ed.set_seed(42)\n",
"\n",
"N = 50 # number of data ponts\n",
"N = 50 # number of data points\n",
"D = 1 # number of features\n",
"\n",
"x_train, y_train = build_toy_dataset(N)"
Expand Down

0 comments on commit 352596c

Please sign in to comment.