[OpenVINO-EP] V3.2 Release Documentation update#9233
Merged
Conversation
Signed-off-by: MaajidKhan <n.maajidkhan@gmail.com>
Signed-off-by: MaajidKhan <n.maajidkhan@gmail.com>
Contributor
Author
|
@oliviajain Updated the documentation with yolov4 python sample link |
oliviajain
reviewed
Oct 6, 2021
| @@ -62,7 +62,11 @@ For more information on Multi-Device plugin of OpenVINO, please refer to the fol | |||
|
|
|||
| Use the ONNX API's.[documentation](https://github.com/onnx/onnx/blob/master/docs/ExternalData.md#converting-and-saving-an-onnx-model-to-external-data). | ||
|
|
||
| Note: Install the latest ONNX Python package using pip to run these ONNX Python API's successfully. | ||
|
|
Contributor
There was a problem hiding this comment.
Add a note about saving external weights filename as data/weights, or not moving the weights after conversion.
Or could also provide example
# Load onnx model
onnx.save_model(onnx_model, 'path/to/save/the/model.onnx', save_as_external_data=True, all_tensors_to_one_file=True, location='data/weights', size_threshold=1024, convert_attribute=False)
# Run with OpenVINO EP
Contributor
Author
There was a problem hiding this comment.
Done @oliviajain . Added an example, explanation and a Note.
Signed-off-by: MaajidKhan <n.maajidkhan@gmail.com>
Signed-off-by: MaajidKhan <n.maajidkhan@gmail.com>
Signed-off-by: MaajidKhan <n.maajidkhan@gmail.com>
Contributor
Author
|
@oliviajain can we get this PR merged. source code PR for the same is already merged. |
oliviajain
approved these changes
Oct 12, 2021
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description: [OpenVINO-EP] V3.2 Release Documentation update
Motivation and Context
Refer the code PR for more context:
#9232