Corrected "-i" argument description (#3142)
authorMikhail Ryzhov <mikhail.ryzhov@intel.com>
Mon, 16 Nov 2020 18:48:06 +0000 (21:48 +0300)
committerGitHub <noreply@github.com>
Mon, 16 Nov 2020 18:48:06 +0000 (21:48 +0300)
* Corrected "-i" argument description

According to their usage in samples

inference-engine/ie_bridges/python/sample/classification_sample_async/classification_sample_async.py
inference-engine/ie_bridges/python/sample/style_transfer_sample/style_transfer_sample.py

index aa38d5a..abb6916 100644 (file)
@@ -79,7 +79,7 @@ def build_argparser():
     args.add_argument('-h', '--help', action='help', default=SUPPRESS, help='Show this help message and exit.')
     args.add_argument("-m", "--model", help="Required. Path to an .xml or .onnx file with a trained model.",
                       required=True, type=str)
-    args.add_argument("-i", "--input", help="Required. Path to a folder with images or path to an image files",
+    args.add_argument("-i", "--input", help="Required. Path to an image files",
                       required=True, type=str, nargs="+")
     args.add_argument("-l", "--cpu_extension",
                       help="Optional. Required for CPU custom layers. Absolute path to a shared library with the"
index e43a15c..273912f 100644 (file)
@@ -29,7 +29,7 @@ def build_argparser():
     args = parser.add_argument_group('Options')
     args.add_argument('-h', '--help', action='help', default=SUPPRESS, help='Show this help message and exit.')
     args.add_argument("-m", "--model", help="Required. Path to an .xml or .onnx file with a trained model.", required=True, type=str)
-    args.add_argument("-i", "--input", help="Required. Path to a folder with images or path to an image files", required=True,
+    args.add_argument("-i", "--input", help="Required. Path to an image files", required=True,
                       type=str, nargs="+")
     args.add_argument("-l", "--cpu_extension",
                       help="Optional. Required for CPU custom layers. "