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>
diff --git a/examples/graph_mobilenet_v2.cpp b/examples/graph_mobilenet_v2.cpp
index 429a3d2..9b1cb8c 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 @@
     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;