aboutsummaryrefslogtreecommitdiff
path: root/samples/ObjectDetection/test/PipelineTest.cpp
diff options
context:
space:
mode:
authorGeorge Gekov <george.gekov@arm.com>2021-08-16 11:32:10 +0100
committerJim Flynn <jim.flynn@arm.com>2022-02-05 19:49:06 +0000
commit23c26277086c78704a17f0dae86da947816320c0 (patch)
tree88b02fd1fae3130256d059251788a7ef68d2831f /samples/ObjectDetection/test/PipelineTest.cpp
parent922b912fd2d462bac0809bac5669310ad1506310 (diff)
downloadarmnn-23c26277086c78704a17f0dae86da947816320c0.tar.gz
MLECO-2079 Adding the C++ KWS example
Signed-off-by: Eanna O Cathain <eanna.ocathain@arm.com> Change-Id: I81899bbfaada32f478c2e2fc6441eabb94d8d0fc
Diffstat (limited to 'samples/ObjectDetection/test/PipelineTest.cpp')
-rw-r--r--samples/ObjectDetection/test/PipelineTest.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/samples/ObjectDetection/test/PipelineTest.cpp b/samples/ObjectDetection/test/PipelineTest.cpp
index bc5824e483..7af09007cc 100644
--- a/samples/ObjectDetection/test/PipelineTest.cpp
+++ b/samples/ObjectDetection/test/PipelineTest.cpp
@@ -33,9 +33,9 @@ TEST_CASE("Test Network Execution SSD_MOBILE")
REQUIRE(testResources != "");
// Create the network options
common::PipelineOptions options;
- options.m_ModelFilePath = GetResourceFilePath("detect.tflite");
+ options.m_ModelFilePath = GetResourceFilePath("ssd_mobilenet_v1.tflite");
options.m_ModelName = "SSD_MOBILE";
- options.m_backends = {"CpuAcc", "CpuRef"};
+ options.m_backends = {"CpuRef"};
od::IPipelinePtr objectDetectionPipeline = od::CreatePipeline(options);