Skip to content

Commit b38e715

Browse files
authored
Update chapter11_part02_sequence-models.ipynb
Remove the extra `)` that is causing error. Original ``` int_train_ds = train_ds.map( lambda x, y: (text_vectorization(x), y)), num_parallel_calls=4) ``` Updated ``` int_train_ds = train_ds.map( lambda x, y: (text_vectorization(x), y), num_parallel_calls=4) ```
1 parent c19e219 commit b38e715

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

chapter11_part02_sequence-models.ipynb

+2-2
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@
123123
"text_vectorization.adapt(text_only_train_ds)\n",
124124
"\n",
125125
"int_train_ds = train_ds.map(\n",
126-
" lambda x, y: (text_vectorization(x), y)),\n",
126+
" lambda x, y: (text_vectorization(x), y),\n",
127127
" num_parallel_calls=4)\n",
128128
"int_val_ds = val_ds.map(\n",
129129
" lambda x, y: (text_vectorization(x), y),\n",
@@ -475,4 +475,4 @@
475475
},
476476
"nbformat": 4,
477477
"nbformat_minor": 0
478-
}
478+
}

0 commit comments

Comments
 (0)