Skip to content

Commit 2b0a18b

Browse files
committed
Fantasy makemore part 1: revised bigram example
1 parent cd698ee commit 2b0a18b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

posts/projects/fantasy_makemore/index.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@
215215
"\n",
216216
"The first model we can use as a potential baseline is a bigram model. With a bigram model, we will predict a new character based off the previous one. We will also introduce a `.` token to denote the start and end of a string. When generating a new word from scratch, a starting `.` will be used. For an example, where `->` will represent \"leads to\":\n",
217217
"\n",
218-
"- In the string `abcd`, `. -> a`, `.a -> b`, `ab -> c`, `bc -> d`, `cd -> .`\n",
218+
"- In the string `abcd`, `. -> a`, `a -> b`, `b -> c`, `c -> d`, `d -> .`\n",
219219
"\n",
220220
"The main difference in our dataset from the makemore one is the addition of a blank space (\" \") token and an apostrophe (\" ' \")."
221221
]

0 commit comments

Comments
 (0)