spaCy/spacy/lang/ml/stop_words.py
sabiqueqb fc91660aa2
Gh 5339 language class for malayalam (#5342)
* Initialize Malayalam Language class

* Add lex_attrs and examples for Malayalam

* Add spaCy Contributor Agreement

* Add test for ml tokenizer
2020-04-27 09:45:08 +02:00

19 lines
242 B
Python

# coding: utf8
from __future__ import unicode_literals
STOP_WORDS = set(
"""
അത്
ഇത്
ആയിരുന്നു
ആകുന്നു
വരെ
അന്നേരം
അന്ന്
ഇന്ന്
ആണ്
""".split()
)