formatting

This commit is contained in:
svlandeg 2023-12-13 09:27:40 +01:00
parent c7c22a8dd5
commit 487f13387e

View File

@ -184,7 +184,9 @@ class Doc:
def to_bytes(self, *, exclude: Iterable[str] = ...) -> bytes: ...
def from_bytes(self, bytes_data: bytes, *, exclude: Iterable[str] = ...) -> Doc: ...
def to_dict(self, *, exclude: Iterable[str] = ...) -> Dict[str, Any]: ...
def from_dict(self, msg: Dict[str, Any], *, exclude: Iterable[str] = ...) -> Doc: ...
def from_dict(
self, msg: Dict[str, Any], *, exclude: Iterable[str] = ...
) -> Doc: ...
def extend_tensor(self, tensor: Floats2d) -> None: ...
def retokenize(self) -> Retokenizer: ...
def to_json(self, underscore: Optional[List[str]] = ...) -> Dict[str, Any]: ...