blob: b8def4fbb4d8b0ae816d9fa2f7704219090b665e [file] [log] [blame]
Bruno Goncalves06304112018-12-27 16:13:58 -02001//
2// Copyright © 2017 Arm Ltd. All rights reserved.
3// SPDX-License-Identifier: MIT
4//
5#include "../InferenceTest.hpp"
6#include "../ImagePreprocessor.hpp"
7#include "armnnTfLiteParser/ITfLiteParser.hpp"
8
9using namespace armnnTfLiteParser;
10
11int main(int argc, char* argv[])
12{
13 int retVal = EXIT_FAILURE;
14 try
15 {
16 // Coverity fix: The following code may throw an exception of type std::length_error.
17 std::vector<ImageSet> imageSet =
18 {
19 {"Dog.jpg", 209},
20 {"Cat.jpg", 283},
21 {"shark.jpg", 3},
22 };
23
24 armnn::TensorShape inputTensorShape({ 1, 224, 224, 3 });
25
26 using DataType = uint8_t;
27 using DatabaseType = ImagePreprocessor<DataType>;
28 using ParserType = armnnTfLiteParser::ITfLiteParser;
29 using ModelType = InferenceModel<ParserType, DataType>;
30
31 // Coverity fix: ClassifierInferenceTestMain() may throw uncaught exceptions.
32 retVal = armnn::test::ClassifierInferenceTestMain<DatabaseType,
33 ParserType>(
34 argc, argv,
35 "mobilenet_v2_1.0_224_quant.tflite", // model name
36 true, // model is binary
37 "input", // input tensor name
38 "output", // output tensor name
39 { 0, 1, 2 }, // test images to test with as above
Derek Lambertieb1fce02019-12-10 21:20:10 +000040 [&imageSet](const char* dataDir, const ModelType &) {
Bruno Goncalves06304112018-12-27 16:13:58 -020041 // we need to get the input quantization parameters from
42 // the parsed model
Bruno Goncalves06304112018-12-27 16:13:58 -020043 return DatabaseType(
44 dataDir,
45 224,
46 224,
47 imageSet,
FinnWilliamsArmaf8b72d2019-05-22 14:50:55 +010048 1);
Bruno Goncalves06304112018-12-27 16:13:58 -020049 },
50 &inputTensorShape);
51 }
52 catch (const std::exception& e)
53 {
54 // Coverity fix: BOOST_LOG_TRIVIAL (typically used to report errors) may throw an
55 // exception of type std::length_error.
56 // Using stderr instead in this context as there is no point in nesting try-catch blocks here.
57 std::cerr << "WARNING: " << *argv << ": An error has occurred when running "
58 "the classifier inference tests: " << e.what() << std::endl;
59 }
60 return retVal;
61}