aboutsummaryrefslogtreecommitdiff
path: root/utils/GraphUtils.h
diff options
context:
space:
mode:
authorGeorgios Pinitas <georgios.pinitas@arm.com>2018-08-17 15:33:39 +0100
committerAnthony Barbier <anthony.barbier@arm.com>2018-11-02 16:54:54 +0000
commitbe2772a6b0b88cc3170f6527e07e8bcb426a4b1c (patch)
treee806f0f2c52360a16bf456be4ec94b5c56c9f3fd /utils/GraphUtils.h
parent6c95c2dd574ebc3217c949a17016eb071935bc3b (diff)
downloadComputeLibrary-be2772a6b0b88cc3170f6527e07e8bcb426a4b1c.tar.gz
COMPMID-1508: Add Inception ResNet V2 model
Change-Id: Iab860a43aa831690fab49b96c124528cc4cb14f2 Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/144621 Tested-by: Jenkins <bsgcomp@arm.com> Reviewed-by: Giorgio Arena <giorgio.arena@arm.com> Reviewed-by: Michalis Spyrou <michalis.spyrou@arm.com>
Diffstat (limited to 'utils/GraphUtils.h')
-rw-r--r--utils/GraphUtils.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/utils/GraphUtils.h b/utils/GraphUtils.h
index 52180ca495..bc7699b70c 100644
--- a/utils/GraphUtils.h
+++ b/utils/GraphUtils.h
@@ -77,7 +77,19 @@ private:
class TFPreproccessor : public IPreprocessor
{
public:
+ /** Constructor
+ *
+ * @param[in] min_range Min normalization range. (Defaults to -1.f)
+ * @param[in] max_range Max normalization range. (Defaults to 1.f)
+ */
+ TFPreproccessor(float min_range = -1.f, float max_range = 1.f);
+
+ // Inherited overriden methods
void preprocess(ITensor &tensor) override;
+
+private:
+ float _min_range;
+ float _max_range;
};
/** PPM writer class */