(nlp: Language, texts: Sequence[str])
| 78 | |
| 79 | |
| 80 | def parse_texts(nlp: Language, texts: Sequence[str]) -> None: |
| 81 | for doc in nlp.pipe(tqdm.tqdm(texts, disable=None), batch_size=16): |
| 82 | pass |
| 83 | |
| 84 | |
| 85 | def _read_inputs(loc: Union[Path, str], msg: Printer) -> Iterator[str]: |
nothing calls this directly
no test coverage detected
searching dependent graphs…