IKH

POS Tagging Using RNN – I

In the next few segments you’ll learn how to use RNNs to tag words in an English corpus with their part-of-speech(POS) tag. Download the Jupyter notebook before proceeding further. You can upload and run the notebook on Nimblebox GPUs as usual.

Now, let’s jump into the code of building POS tagger using RNNs.

Now that the data is loaded, let’s convert the text to numeric representation so that it can be fed to the RNN.

In the next segment, you’ll continue the same exercise.

Report an error