spaCy/spacy/fr/language_data.py

11 lines
151 B
Python
Raw Normal View History

# encoding: utf8
from __future__ import unicode_literals
2016-12-18 18:54:19 +03:00
from .stop_words import STOP_WORDS
2016-12-18 18:54:19 +03:00
STOP_WORDS = set(STOP_WORDS)
2016-12-17 14:33:09 +03:00
__all__ = ["STOP_WORDS"]