From 331bc0c357960e30ea2da55fb9b4c66573bd31b8 Mon Sep 17 00:00:00 2001 From: "J.P. Filevich" Date: Tue, 26 Nov 2024 21:02:58 -0300 Subject: [PATCH] fix typo --- chapter_recurrent-neural-networks/text-sequence.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chapter_recurrent-neural-networks/text-sequence.md b/chapter_recurrent-neural-networks/text-sequence.md index 9b7b4c7cd7..ffa584847e 100644 --- a/chapter_recurrent-neural-networks/text-sequence.md +++ b/chapter_recurrent-neural-networks/text-sequence.md @@ -204,7 +204,7 @@ we [**package everything into the following which returns `corpus`, a list of token indices, and `vocab`, the vocabulary of *The Time Machine* corpus. The modifications we did here are: -(i) we tokenize text into characters, not words, +(i) we tokenize text into words, not characters, to simplify the training in later sections; (ii) `corpus` is a single list, not a list of token lists, since each text line in *The Time Machine* dataset