fchollet / deep-learning-with-python-notebooks

Jupyter notebooks for the code samples of the book "Deep Learning with Python"
MIT License
17.97k stars 8.48k forks source link

Update chapter11_part02_sequence-models.ipynb #183

Closed DerekChia closed 2 years ago

DerekChia commented 2 years ago

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)