From ed1dfaa91e1ccb19acc0c1a40bb69e4e9d605e3b Mon Sep 17 00:00:00 2001 From: Hector Li Date: Mon, 24 Oct 2022 11:07:42 -0700 Subject: [PATCH] Snpe EP add link to inference example code (#13415) Add link to inference example code --- docs/execution-providers/SNPE-ExecutionProvider.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/execution-providers/SNPE-ExecutionProvider.md b/docs/execution-providers/SNPE-ExecutionProvider.md index 6d49c42490..1b0ff78093 100644 --- a/docs/execution-providers/SNPE-ExecutionProvider.md +++ b/docs/execution-providers/SNPE-ExecutionProvider.md @@ -63,3 +63,9 @@ Ort::Session session(env, model_path, session_options); ``` The C API details are [here](../get-started/with-c.md). + +### Inference example + +[Image classification with Inception v3 in CPP using SNPE Execution Provider](https://github.com/microsoft/onnxruntime-inference-examples/tree/main/c_cxx/Snpe_EP) + +[Image classification with VGG16 in C# using SNPE Execution Provider](https://github.com/microsoft/onnxruntime-inference-examples/tree/main/c_sharp/Snpe_EP/vgg16_image_classification)