-
Kiwi.version:0.17.1 tokens = kiwi.tokenize(sentence, normalize_coda=True, match_options=Match.ALL | Match.JOIN_NOUN_PREFIX) text = "여행 가능하다." 여기서 "가능하다"는 형용사로 표현되어야 하는 것이 아닐지요. |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 3 replies
-
>>> kiwi.tokenize('여행 가능하다',
normalize_coda=True,
match_options=Match.ALL | Match.JOIN_NOUN_PREFIX | Match.JOIN_ADJ_SUFFIX)
[Token(form='여행', tag='NNG', start=0, len=2),
Token(form='가능하', tag='VA', start=3, len=3),
Token(form='다', tag='EF', start=6, len=1)] |
Beta Was this translation helpful? Give feedback.
-
네 고맙습니다. |
Beta Was this translation helpful? Give feedback.
-
새롭게 생성하는 것보다, 관련된 내용은 한곳에서 계속 만들면 좋을 것같아서 여기에... |
Beta Was this translation helpful? Give feedback.
네 고맙습니다.