Skip to content

Commit

Permalink
🐞 Fix metadata_path arg to metadata in OpenVINO inferencer (#1648)
Browse files Browse the repository at this point in the history
Fix metadata_path arg to metadata in OpenVINO inferencer
  • Loading branch information
samet-akcay authored Jan 17, 2024
1 parent 5220f69 commit b204c50
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -394,7 +394,7 @@
"source": [
"inferencer = OpenVINOInferencer(\n",
" path=openvino_model_path, # Path to the OpenVINO IR model.\n",
" metadata_path=metadata_path, # Path to the metadata file.\n",
" metadata=metadata_path, # Path to the metadata file.\n",
" device=\"CPU\", # We would like to run it on an Intel CPU.\n",
")"
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@
"\n",
" inferencer = OpenVINOInferencer(\n",
" path=openvino_model_path, # Path to the OpenVINO IR model.\n",
" metadata_path=metadata_path, # Path to the metadata file.\n",
" metadata=metadata_path, # Path to the metadata file.\n",
" device=\"CPU\", # We would like to run it on an Intel CPU.\n",
" )\n",
"\n",
Expand Down

0 comments on commit b204c50

Please sign in to comment.