mirror of
https://github.com/explosion/spaCy.git
synced 2024-12-24 00:46:28 +03:00
Fix syntax iterators for Persian (#5437)
This commit is contained in:
parent
9ce059dd06
commit
780b869345
|
@ -10,6 +10,7 @@ from .lex_attrs import LEX_ATTRS
|
|||
from .tokenizer_exceptions import TOKENIZER_EXCEPTIONS
|
||||
from .tag_map import TAG_MAP
|
||||
from .punctuation import TOKENIZER_SUFFIXES
|
||||
from .syntax_iterators import SYNTAX_ITERATORS
|
||||
|
||||
|
||||
class PersianDefaults(Language.Defaults):
|
||||
|
@ -24,6 +25,7 @@ class PersianDefaults(Language.Defaults):
|
|||
tag_map = TAG_MAP
|
||||
suffixes = TOKENIZER_SUFFIXES
|
||||
writing_system = {"direction": "rtl", "has_case": False, "has_letters": True}
|
||||
syntax_iterators = SYNTAX_ITERATORS
|
||||
|
||||
|
||||
class Persian(Language):
|
||||
|
|
0
spacy/tests/lang/fa/__init__.py
Normal file
0
spacy/tests/lang/fa/__init__.py
Normal file
Loading…
Reference in New Issue
Block a user