Skip to content

Commit a574644

Browse files
authored
Fix syntax error
Fixes SyntaxError: positional argument follows keyword argument
1 parent 42f014e commit a574644

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: Chapter1_Introduction/Ch1_Introduction_TFP.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1208,7 +1208,7 @@
12081208
"# Set the chain's start state.\n",
12091209
"initial_chain_state = [\n",
12101210
" tf.cast(tf.reduce_mean(count_data), tf.float32) * tf.ones([], dtype=tf.float32, name=\"init_lambda1\"),\n",
1211-
" tf.cast(tf.reduce_mean(count_data), tf.float32) * tf.ones([], dtype=tf.float32, name=\"init_lambda2\", tf.float32),\n",
1211+
" tf.cast(tf.reduce_mean(count_data), tf.float32) * tf.ones([], dtype=tf.float32, name=\"init_lambda2\"),\n",
12121212
" 0.5 * tf.ones([], dtype=tf.float32, name=\"init_tau\"),\n",
12131213
"]\n",
12141214
"\n",

0 commit comments

Comments
 (0)