blob: 8da553f0c2d8d5708bc4d998678624740632ce20 [file] [log] [blame]
Nattapat Chaimanowongd8eee592018-10-26 10:24:14 +01001//
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 {
FinnWilliamsArmedb8b2e2019-05-29 13:42:37 +010019 // The model we are using incorrectly classifies the images
Matthew Bentham41d3fa62018-10-30 10:11:23 +000020 // But can still be used for benchmarking the layers.
FinnWilliamsArmedb8b2e2019-05-29 13:42:37 +010021 {"Dog.jpg", 178},
22 {"Cat.jpg", 39},
23 {"shark.jpg", 598},
Nattapat Chaimanowongd8eee592018-10-26 10:24:14 +010024 };
25
Matteo Martincigh49124022019-01-11 13:25:59 +000026 armnn::TensorShape inputTensorShape({ 1, 224, 224, 3 });
Nattapat Chaimanowongd8eee592018-10-26 10:24:14 +010027
28 using DataType = uint8_t;
29 using DatabaseType = ImagePreprocessor<DataType>;
30 using ParserType = armnnTfLiteParser::ITfLiteParser;
31 using ModelType = InferenceModel<ParserType, DataType>;
32
33 // Coverity fix: ClassifierInferenceTestMain() may throw uncaught exceptions.
34 retVal = armnn::test::ClassifierInferenceTestMain<DatabaseType,
35 ParserType>(
36 argc, argv,
David Monahandc279792019-04-23 10:54:34 +010037 "vgg_16_int8.tflite", // model name
Matteo Martincigh49124022019-01-11 13:25:59 +000038 true, // model is binary
David Monahandc279792019-04-23 10:54:34 +010039 "input", // input tensor name
40 "vgg_16/fc8/squeezed", // output tensor name
Matteo Martincigh49124022019-01-11 13:25:59 +000041 { 0, 1, 2 }, // test images to test with as above
Derek Lambertieb1fce02019-12-10 21:20:10 +000042 [&imageSet](const char* dataDir, const ModelType &) {
Nattapat Chaimanowongd8eee592018-10-26 10:24:14 +010043 // we need to get the input quantization parameters from
44 // the parsed model
Nattapat Chaimanowongd8eee592018-10-26 10:24:14 +010045 return DatabaseType(
46 dataDir,
47 224,
48 224,
49 imageSet,
FinnWilliamsArmaf8b72d2019-05-22 14:50:55 +010050 1,
Nattapat Chaimanowongd8eee592018-10-26 10:24:14 +010051 {{0, 0, 0}},
52 {{1, 1, 1}},
53 DatabaseType::DataFormat::NCHW,
Matteo Martincigh49124022019-01-11 13:25:59 +000054 1);
Nattapat Chaimanowongd8eee592018-10-26 10:24:14 +010055 },
56 &inputTensorShape);
57 }
58 catch (const std::exception& e)
59 {
60 // Coverity fix: BOOST_LOG_TRIVIAL (typically used to report errors) may throw an
61 // exception of type std::length_error.
62 // Using stderr instead in this context as there is no point in nesting try-catch blocks here.
63 std::cerr << "WARNING: " << *argv << ": An error has occurred when running "
64 "the classifier inference tests: " << e.what() << std::endl;
65 }
66 return retVal;
67}