Tag a Korean text

Report a typo

Download a language model for the Korean language:

import stanza

nlp = stanza.Pipeline(lang='ko', processors='tokenize,pos')

Then, implement a POS tagging for the given Korean sentence. Find a correct universal POS tag for each token. Your answer should follow this pattern:

token - POS

Each token-POS pair should start with a new line.

Write code in your IDE to process the text file and display the results below
___

Create a free account to access the full topic