Skip to content

Commit

Permalink
Merge pull request #65 from jakaskerl/patch-1
Browse files Browse the repository at this point in the history
Fixing compiler_params
  • Loading branch information
HonzaCuhel authored Mar 22, 2024
2 parents 28fb564 + aec99d7 commit 768b307
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli/blobconverter/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -526,7 +526,7 @@ def __run_cli__():
parser.add_argument('-o', '--output-dir', help="Directory where the output blob should be saved")
parser.add_argument('-v', '--version', choices=[Versions.v2021_2, Versions.v2021_3, Versions.v2021_4, Versions.v2022_1, Versions.v2022_3_RVC3], help=f"OpenVINO version to use for conversion. To export model for RVC3, you must set OpenVINO version to '{Versions.v2022_3_RVC3}'.")
parser.add_argument('--optimizer-params', help="Additional params to use when converting a model to OpenVINO IR")
parser.add_argument('--compile-params', help="Additional params to use when compiling a model to MyriadX blob")
parser.add_argument('--compile-params', nargs="+", help="Additional params to use when compiling a model to MyriadX blob")
parser.add_argument('--converter-url', dest="url", help="URL to BlobConverter API endpoint used for conversion")
parser.add_argument('--no-cache', dest="use_cache", action="store_false", help="Omit .cache directory and force new compilation of the blob")
parser.add_argument('--dry', dest="dry", action="store_true", help="Instead of compiling the blob, return compilation commands (for manual conversion)")
Expand Down

0 comments on commit 768b307

Please sign in to comment.