Skip to content

Commit c19e219

Browse files
committed
concatenate -> stack
1 parent 60e4956 commit c19e219

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

chapter10_dl-for-timeseries.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -543,7 +543,7 @@
543543
" output_t = np.tanh(np.dot(W, input_t) + np.dot(U, state_t) + b)\n",
544544
" successive_outputs.append(output_t)\n",
545545
" state_t = output_t\n",
546-
"final_output_sequence = np.concatenate(successive_outputs, axis=0)"
546+
"final_output_sequence = np.stack(successive_outputs, axis=0)"
547547
]
548548
},
549549
{

0 commit comments

Comments
 (0)