Skip to content

Commit

Permalink
Merge pull request fchollet#183 from DerekChia/patch-1
Browse files Browse the repository at this point in the history
Update chapter11_part02_sequence-models.ipynb
  • Loading branch information
fchollet authored Nov 12, 2021
2 parents 1bf3060 + b38e715 commit 5758781
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions chapter11_part02_sequence-models.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@
"text_vectorization.adapt(text_only_train_ds)\n",
"\n",
"int_train_ds = train_ds.map(\n",
" lambda x, y: (text_vectorization(x), y)),\n",
" lambda x, y: (text_vectorization(x), y),\n",
" num_parallel_calls=4)\n",
"int_val_ds = val_ds.map(\n",
" lambda x, y: (text_vectorization(x), y),\n",
Expand Down Expand Up @@ -475,4 +475,4 @@
},
"nbformat": 4,
"nbformat_minor": 0
}
}

0 comments on commit 5758781

Please sign in to comment.