mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-14 21:57:15 +03:00
6e6650307d
* added tests * added pt vocab * transferred spanish * added syntax iters * fixed parenthesis * added nmod example * added relative pron * fixed rel pron * added rel subclause * corrected typo * added more NP chains * long sentence * fixed typo * fixed typo * fixed typo * corrected heads * added passive subj * added pass subj * added passive obj * refinement to rights * went back to odl * fixed test * fixed typo * fixed typo * formatted * Format * Format test cases Co-authored-by: Adriane Boyd <adrianeboyd@gmail.com>
24 lines
644 B
Python
24 lines
644 B
Python
from .tokenizer_exceptions import TOKENIZER_EXCEPTIONS
|
|
from .stop_words import STOP_WORDS
|
|
from .lex_attrs import LEX_ATTRS
|
|
from .syntax_iterators import SYNTAX_ITERATORS
|
|
from .punctuation import TOKENIZER_INFIXES, TOKENIZER_PREFIXES
|
|
from ...language import Language, BaseDefaults
|
|
|
|
|
|
class PortugueseDefaults(BaseDefaults):
|
|
tokenizer_exceptions = TOKENIZER_EXCEPTIONS
|
|
infixes = TOKENIZER_INFIXES
|
|
prefixes = TOKENIZER_PREFIXES
|
|
lex_attr_getters = LEX_ATTRS
|
|
syntax_iterators = SYNTAX_ITERATORS
|
|
stop_words = STOP_WORDS
|
|
|
|
|
|
class Portuguese(Language):
|
|
lang = "pt"
|
|
Defaults = PortugueseDefaults
|
|
|
|
|
|
__all__ = ["Portuguese"]
|