Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -428,7 +428,7 @@
" ### START CODE HERE ###\n",
" \n",
" # Step 1: Define your pre-attention Bi-LSTM. Remember to use return_sequences=True. (≈ 1 line)\n",
" a = Bidirectional(LSTM(n_a, return_sequences=True))(X)\n",
" a = Bidirectional(LSTM(units=n_a, return_sequences=True))(X)\n",
" \n",
" # Step 2: Iterate for Ty steps\n",
" for t in range(Ty):\n",
Expand Down