I am learning Named Entity Recognition, and i see that the training script uses a variable called vocab
which looks like this
vocab = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ\'-/\t \n\r\x0b\x0c:"
My Guess is that it is supposed to learn all these characters present in the text like abcd... etc, what i dont understand is the use of char like /n /t
what is the use of these char? and in general this variable?
Thanks in advance.