From b54c644f1186018b9a3a93fa94c351cc3f1a68f0 Mon Sep 17 00:00:00 2001 From: Georgios Pinitas Date: Wed, 3 Apr 2019 13:18:14 +0100 Subject: COMPMID-2011: ResNet50 returns wrong result Change-Id: I55449d2ae834c27d6d8b49db93a3f0b00b5b7e3e Signed-off-by: Georgios Pinitas Reviewed-on: https://review.mlplatform.org/c/940 Reviewed-by: Michalis Spyrou Comments-Addressed: Arm Jenkins Tested-by: Arm Jenkins --- utils/GraphUtils.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'utils/GraphUtils.cpp') diff --git a/utils/GraphUtils.cpp b/utils/GraphUtils.cpp index 26ea02a9ff..6be289a7e1 100644 --- a/utils/GraphUtils.cpp +++ b/utils/GraphUtils.cpp @@ -77,8 +77,8 @@ void TFPreproccessor::preprocess(ITensor &tensor) }); } -CaffePreproccessor::CaffePreproccessor(std::array mean, float scale, bool bgr) - : _mean(mean), _scale(scale), _bgr(bgr) +CaffePreproccessor::CaffePreproccessor(std::array mean, bool bgr, float scale) + : _mean(mean), _bgr(bgr), _scale(scale) { if(_bgr) { -- cgit v1.2.1