spaCy/spacy/lang/ko/stop_words.py
2019-08-20 17:36:34 +02:00

71 lines
405 B
Python

# coding: utf8
from __future__ import unicode_literals
STOP_WORDS = set(
"""
아니
그렇
위하
때문
그것
말하
그러나
못하
그런
그리고
시키
그러
하나
어떤
다른
어떻
이렇
""".split()
)