Source code for revscoring.languages.features
"""
Dictionary
++++++++++
.. automodule :: revscoring.languages.features.dictionary
RegexMatches
++++++++++++
.. automodule :: revscoring.languages.features.regex_matches
Stopwords
+++++++++
.. automodule :: revscoring.languages.features.stopwords
Stemmed
+++++++
.. automodule :: revscoring.languages.features.stemmed
"""
from .dictionary import Dictionary
from .regex_matches import RegexMatches
from .stemmed import Stemmed
from .stopwords import Stopwords
__all__ = [Dictionary, RegexMatches, Stemmed, Stopwords]