Skip to content
Snippets Groups Projects

Add default values for entity separators

Merged Yoann Schneider requested to merge default-params-entity into main
All threads resolved!
Files
5
@@ -97,11 +97,6 @@ def add_extract_parser(subcommands) -> None:
)
# Optional arguments.
parser.add_argument(
"--load-entities",
action="store_true",
help="Extract text with their entities.",
)
parser.add_argument(
"--entity-separators",
type=validate_char,
@@ -117,7 +112,7 @@ def add_extract_parser(subcommands) -> None:
parser.add_argument(
"--tokens",
type=pathlib.Path,
help="Mapping between starting tokens and end tokens. Needed for entities.",
help="Mapping between starting tokens and end tokens to extract text with their entities.",
required=False,
)
Loading