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