mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-12 04:38:28 +03:00
9a016d17c2
* adding Sinhala language package, stop words, examples and lex_attrs. * Adding contributor agreement * Updating contributor agreement
52 lines
564 B
Python
52 lines
564 B
Python
# coding: utf8
|
|
from __future__ import unicode_literals
|
|
|
|
|
|
# Stop words
|
|
|
|
STOP_WORDS = set("""
|
|
අතර
|
|
එච්චර
|
|
එපමණ
|
|
එලෙස
|
|
එවිට
|
|
ඒ
|
|
කට
|
|
කදී
|
|
කින්
|
|
ක්
|
|
ට
|
|
තුර
|
|
ත්
|
|
ද
|
|
නමුත්
|
|
නොහොත්
|
|
පමණ
|
|
පමණි
|
|
ම
|
|
මෙච්චර
|
|
මෙපමණ
|
|
මෙලෙස
|
|
මෙවිට
|
|
මේ
|
|
ය
|
|
යි
|
|
ලදී
|
|
ලෙස
|
|
වගේ
|
|
වන
|
|
විට
|
|
විටෙක
|
|
විතර
|
|
විය
|
|
වුව
|
|
වුවත්
|
|
වුවද
|
|
වූ
|
|
සමඟ
|
|
සහ
|
|
හා
|
|
හෙවත්
|
|
හෝ
|
|
""".split())
|