Creating Our Vocabulary for Training

Create a customized vocabulary for training SeqGAN using English jokes dataset.

Reading code that’s been written by someone else in GitHub is easy. The most important thing we need to do is apply the models we know to new applications and create our own samples. Here, we will walk through the basic steps of creating a vocabulary from a huge collection of text and use it to train our NLP models. In the NLP model, a vocabulary set is normally a table that maps each word or symbol to a unique token (typically, an int value) so that any sentence can be represented by a vector of int.

Get hands-on with 1200+ tech skills courses.