forked from microsoft/onnxruntime
-
Notifications
You must be signed in to change notification settings - Fork 54
Maajid/implement read network #64
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Conversation
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
smkarlap
reviewed
Jan 8, 2021
da05448
to
b73eaa4
Compare
suryasidd
requested changes
Jan 13, 2021
1aea8b8
to
6b8822a
Compare
suryasidd
reviewed
Jan 13, 2021
Just that one change for the exception. Everything else LGTM. Do we have any other small fixes upcoming that we wan't to add before we send the PR ? |
->Using Core::ReadNetwork() method for reading and creating a CNNNework ->Since OpenVINO™ 2020.4 version, Inference Engine enables reading ONNX models via the Inference Engine Core API and there is no need to use directly the low-level ONNX* Importer API anymore. To read ONNX* models, it's recommended to use the Core::ReadNetwork() method that provide a uniform way to read models from ONNX format. Signed-off-by: MaajidKhan <[email protected]>
-> use InferenceEngine::details::InferenceEngineException to catch the exception for ReadNetwork() Signed-off-by: MaajidKhan <[email protected]>
->The UEP component fails to compile with OpenVINO_2021.1 release version due to indentation error.Indentation is fixed with this commit. Signed-off-by: MaajidKhan <[email protected]>
75142ad
to
442bb82
Compare
sfatimar
pushed a commit
that referenced
this pull request
Oct 28, 2024
…oft#22603) Add support for softmaxcrossentropy loss. This is already enabled on our ROCm Fork of the MIGraphX EP ### Motivation and Context Adds support for the SoftmaxCrossEntropyLoss operator and removes the filtering of inputs here.
ankitm3k
pushed a commit
that referenced
this pull request
Dec 11, 2024
…oft#22603) Add support for softmaxcrossentropy loss. This is already enabled on our ROCm Fork of the MIGraphX EP ### Motivation and Context Adds support for the SoftmaxCrossEntropyLoss operator and removes the filtering of inputs here.
ankitm3k
pushed a commit
that referenced
this pull request
Dec 11, 2024
…oft#22603) Add support for softmaxcrossentropy loss. This is already enabled on our ROCm Fork of the MIGraphX EP ### Motivation and Context Adds support for the SoftmaxCrossEntropyLoss operator and removes the filtering of inputs here.
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:
Using Core::ReadNetwork() method for reading and creating a CNNNework
Motivation and Context
Since OpenVINO™ 2020.4 version, Inference Engine enables reading ONNX models via the Inference Engine Core API and there is no need to use directly the low-level ONNX* Importer API anymore. To read ONNX* models, it's recommended to use the Core::ReadNetwork() method that provide a uniform way to read models from ONNX format.