Introduction


Character level language model that predicts the next character given previous characters.

Example: For 'isabella':


i likely comes first
s after i
a after is
b after isa, and so on


Representation: <START>isabella<END>







1. Loading the Dataset





with open('names.txt', 'r') as file:
words =...