mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-16 06:37:04 +03:00
10 lines
224 B
Python
10 lines
224 B
Python
|
# coding: utf8
|
||
|
from __future__ import unicode_literals
|
||
|
|
||
|
|
||
|
# Stop words
|
||
|
STOP_WORDS = set(
|
||
|
"""
|
||
|
ግን አንቺ አንተ እናንተ ያንተ ያንቺ የናንተ ራስህን ራስሽን ራሳችሁን
|
||
|
""".split()
|
||
|
)
|