mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-12 04:38:28 +03:00
10 lines
143 B
Python
10 lines
143 B
Python
# encoding: utf8
|
|
from __future__ import unicode_literals
|
|
|
|
|
|
# stop words as whitespace-separated list
|
|
STOP_WORDS = set("""
|
|
。
|
|
、
|
|
""".split())
|