mirror of
https://github.com/explosion/spaCy.git
synced 2025-08-05 04:40:20 +03:00
define new Matcher keyword arg
This commit is contained in:
parent
e029616f53
commit
2243803b34
|
@ -5,7 +5,8 @@ from ..vocab import Vocab
|
|||
from ..tokens import Doc, Span
|
||||
|
||||
class Matcher:
|
||||
def __init__(self, vocab: Vocab, validate: bool = ...) -> None: ...
|
||||
def __init__(self, vocab: Vocab, validate: bool = ...,
|
||||
fuzzy_compare: Optional[Callable[[str, str, int]], bool] = ...) -> None: ...
|
||||
def __reduce__(self) -> Any: ...
|
||||
def __len__(self) -> int: ...
|
||||
def __contains__(self, key: str) -> bool: ...
|
||||
|
|
Loading…
Reference in New Issue
Block a user