From 186a9de6a116bdd7a7ce9ed2929921d203f4bb4e Mon Sep 17 00:00:00 2001 From: Anastasiia Pnevskaia Date: Mon, 12 Feb 2024 14:47:46 +0100 Subject: [PATCH] [OVC] Removed wrong text from extension parameter description. (#22781) ### Details: - "To disable all extensions including those that are placed at the default location, pass an empty string." - this line applies only to legacy MO. ### Tickets: - 132289 --- tools/ovc/openvino/tools/ovc/convert.py | 3 +-- tools/ovc/openvino/tools/ovc/help.py | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/tools/ovc/openvino/tools/ovc/convert.py b/tools/ovc/openvino/tools/ovc/convert.py index b9bb41aa59a..76dcd3d1aab 100644 --- a/tools/ovc/openvino/tools/ovc/convert.py +++ b/tools/ovc/openvino/tools/ovc/convert.py @@ -82,8 +82,7 @@ def convert_model( :param extension: Paths to libraries (.so or .dll) with extensions, comma-separated list of paths, objects derived from BaseExtension class or lists of - objects. To disable all extensions including those that are placed - at the default location, pass an empty string. + objects. :param verbose: Print detailed information about conversion. :param share_weights: diff --git a/tools/ovc/openvino/tools/ovc/help.py b/tools/ovc/openvino/tools/ovc/help.py index 1cd3d464a8f..ed84f3bf1f5 100644 --- a/tools/ovc/openvino/tools/ovc/help.py +++ b/tools/ovc/openvino/tools/ovc/help.py @@ -38,8 +38,7 @@ def get_convert_model_help_specifics(): 'extension': {'description': 'Paths or a comma-separated list of paths to libraries ' - '(.so or .dll) with extensions. To disable all extensions including ' - 'those that are placed at the default location, pass an empty string.', + '(.so or .dll) with extensions.', 'action': CanonicalizePathCheckExistenceAction, 'type': readable_files_or_empty}, 'version':