aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPablo Tello <pablo.tello@arm.com>2019-03-22 16:47:59 +0000
committerPablo Marquez <pablo.tello@arm.com>2019-03-26 17:13:07 +0000
commitadc2186c06ca27f368dfe6ceadce449551259efc (patch)
treedaa575df45b7e7fc67a01e723d5104c6368b12a1
parentae0001e4e9af43e03398a8aa36c038cf4fb2600a (diff)
downloadComputeLibrary-adc2186c06ca27f368dfe6ceadce449551259efc.tar.gz
COMPMID-1995: Fixed path in mobilenet_v2
Change-Id: I0377b9aa1156a98e6f467f9d15381084024f27fd Signed-off-by: Pablo Tello <pablo.tello@arm.com> Reviewed-on: https://review.mlplatform.org/c/889 Reviewed-by: Manuel Bottini <manuel.bottini@arm.com> Comments-Addressed: Arm Jenkins <bsgcomp@arm.com> Tested-by: Arm Jenkins <bsgcomp@arm.com> Reviewed-by: Michele Di Giorgio <michele.digiorgio@arm.com>
-rw-r--r--examples/graph_mobilenet_v2.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/graph_mobilenet_v2.cpp b/examples/graph_mobilenet_v2.cpp
index 429a3d2cc0..9b1cb8caa0 100644
--- a/examples/graph_mobilenet_v2.cpp
+++ b/examples/graph_mobilenet_v2.cpp
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2018 ARM Limited.
+ * Copyright (c) 2018-2019 ARM Limited.
*
* SPDX-License-Identifier: MIT
*
@@ -263,7 +263,7 @@ private:
void create_graph_qasymm8(TensorDescriptor &input_descriptor)
{
// Create model path
- const std::string model_path = "/cnn_data/mobilenet_v2_1.0_224_quantized_model";
+ const std::string model_path = "/cnn_data/mobilenet_v2_1.0_224_quantized_model/";
// Get trainable parameters data path
std::string data_path = common_params.data_path;