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 - POSEach token-POS pair should start with a new line.