From 506e5f55ef8ab85975953e89bde5e062ec14d282 Mon Sep 17 00:00:00 2001 From: kadarakos Date: Wed, 23 Nov 2022 17:26:24 +0000 Subject: [PATCH] better help message --- spacy/cli/apply.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spacy/cli/apply.py b/spacy/cli/apply.py index 8358faa3e..8acca8ada 100644 --- a/spacy/cli/apply.py +++ b/spacy/cli/apply.py @@ -76,7 +76,7 @@ def apply_cli( data_path: Path = Arg(..., help=path_help, exists=True), output_file: Path = Arg(..., help=out_help, dir_okay=False), code_path: Optional[Path] = Opt(None, "--code", "-c", help=code_help), - text_key: str = Opt("text", "--text-key", "-tk", help="Field to grab from .jsonl"), + text_key: str = Opt("text", "--text-key", "-tk", help="Key containing text string for JSONL"), force_overwrite: bool = Opt(False, "--force", "-F", help="Force overwriting the output file"), use_gpu: int = Opt(-1, "--gpu-id", "-g", help="GPU ID or -1 for CPU."), batch_size: int = Opt(1, "--batch-size", "-b", help="Batch size."),