aboutsummaryrefslogtreecommitdiff
path: root/tests/TfInceptionV3-Armnn/TfInceptionV3-Armnn.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/TfInceptionV3-Armnn/TfInceptionV3-Armnn.cpp')
-rw-r--r--tests/TfInceptionV3-Armnn/TfInceptionV3-Armnn.cpp23
1 files changed, 23 insertions, 0 deletions
diff --git a/tests/TfInceptionV3-Armnn/TfInceptionV3-Armnn.cpp b/tests/TfInceptionV3-Armnn/TfInceptionV3-Armnn.cpp
new file mode 100644
index 0000000000..94878ae4ce
--- /dev/null
+++ b/tests/TfInceptionV3-Armnn/TfInceptionV3-Armnn.cpp
@@ -0,0 +1,23 @@
+//
+// Copyright © 2017 Arm Ltd. All rights reserved.
+// See LICENSE file in the project root for full license information.
+//
+#include "../InferenceTest.hpp"
+#include "../MobileNetDatabase.hpp"
+#include "armnnTfParser/ITfParser.hpp"
+
+int main(int argc, char* argv[])
+{
+ std::vector<ImageSet> imageSet =
+ {
+ { "Dog.jpg", 208 },
+ { "Cat.jpg", 283 },
+ { "shark.jpg", 3 },
+ };
+ armnn::TensorShape inputTensorShape({ 1, 299, 299, 3 });
+ return armnn::test::ClassifierInferenceTestMain<MobileNetDatabase, armnnTfParser::ITfParser>(
+ argc, argv, "inception_v3_2016_08_28_frozen_transformed.pb", true,
+ "input", "InceptionV3/Predictions/Reshape_1", { 0, 1, 2, },
+ [&imageSet](const char* dataDir) { return MobileNetDatabase(dataDir, 299, 299, imageSet); },
+ &inputTensorShape);
+}