Make Jsonl Corpus reader optional again

This commit is contained in:
Paul O'Leary McCann 2021-11-07 18:56:23 +09:00
parent 86af0234ab
commit 141f12b92e
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ def create_docbin_reader(
@util.registry.readers("spacy.JsonlCorpus.v1")
def create_jsonl_reader(
path: Union[str, Path], min_length: int = 0, max_length: int = 0, limit: int = 0
path: Union[None, str, Path], min_length: int = 0, max_length: int = 0, limit: int = 0
) -> Callable[["Language"], Iterable[Example]]:
return JsonlCorpus(path, min_length=min_length, max_length=max_length, limit=limit)