1
1
mirror of https://github.com/explosion/spaCy.git synced 2025-03-12 23:35:47 +03:00
spaCy/spacy/lang/mr/__init__.py

15 lines
238 B
Python

from .stop_words import STOP_WORDS
from ...language import Language
class MarathiDefaults(Language.Defaults):
stop_words = STOP_WORDS
class Marathi(Language):
lang = "mr"
Defaults = MarathiDefaults
__all__ = ["Marathi"]