blob: 6748b12d9dd32441f736b0ac9c8d101d580235d6 [file] [log] [blame]
surmeh01bceff2f2018-03-29 16:29:27 +01001//
2// Copyright © 2017 Arm Ltd. All rights reserved.
David Beckecb56cd2018-09-05 12:52:57 +01003// SPDX-License-Identifier: MIT
surmeh01bceff2f2018-03-29 16:29:27 +01004//
5#include "../InferenceTest.hpp"
telsoa01c577f2c2018-08-31 09:22:23 +01006#include "../ImagePreprocessor.hpp"
surmeh01bceff2f2018-03-29 16:29:27 +01007#include "armnnTfParser/ITfParser.hpp"
8
9int main(int argc, char* argv[])
10{
surmeh013537c2c2018-05-18 16:31:43 +010011 int retVal = EXIT_FAILURE;
12 try
surmeh01bceff2f2018-03-29 16:29:27 +010013 {
surmeh013537c2c2018-05-18 16:31:43 +010014 // Coverity fix: The following code may throw an exception of type std::length_error.
15 std::vector<ImageSet> imageSet =
16 {
17 {"Dog.jpg", 209},
telsoa01c577f2c2018-08-31 09:22:23 +010018 // Top five predictions in tensorflow:
surmeh013537c2c2018-05-18 16:31:43 +010019 // -----------------------------------
surmeh01c3b012e2018-09-12 16:00:26 +010020 // 209:Labrador retriever 0.46392533
21 // 160:Rhodesian ridgeback 0.29911423
22 // 208:golden retriever 0.108059585
23 // 169:redbone 0.033753652
24 // 274:dingo, warrigal, warragal, ... 0.01232666
25
surmeh013537c2c2018-05-18 16:31:43 +010026 {"Cat.jpg", 283},
telsoa01c577f2c2018-08-31 09:22:23 +010027 // Top five predictions in tensorflow:
surmeh013537c2c2018-05-18 16:31:43 +010028 // -----------------------------------
surmeh01c3b012e2018-09-12 16:00:26 +010029 // 283:tiger cat 0.6508582
30 // 286:Egyptian cat 0.2604343
31 // 282:tabby, tabby cat 0.028786005
32 // 288:lynx, catamount 0.020673484
33 // 40:common iguana, iguana, ... 0.0080499435
34
surmeh013537c2c2018-05-18 16:31:43 +010035 {"shark.jpg", 3},
telsoa01c577f2c2018-08-31 09:22:23 +010036 // Top five predictions in tensorflow:
surmeh013537c2c2018-05-18 16:31:43 +010037 // -----------------------------------
surmeh01c3b012e2018-09-12 16:00:26 +010038 // 3:great white shark, white shark, ... 0.96672016
39 // 4:tiger shark, Galeocerdo cuvieri 0.028302953
40 // 149:killer whale, killer, orca, ... 0.0020228163
41 // 5:hammerhead, hammerhead shark 0.0017547971
42 // 150:dugong, Dugong dugon 0.0003968083
surmeh013537c2c2018-05-18 16:31:43 +010043 };
surmeh01bceff2f2018-03-29 16:29:27 +010044
surmeh013537c2c2018-05-18 16:31:43 +010045 armnn::TensorShape inputTensorShape({ 1, 224, 224, 3 });
46
telsoa01c577f2c2018-08-31 09:22:23 +010047 using DataType = float;
48 using DatabaseType = ImagePreprocessor<float>;
49 using ParserType = armnnTfParser::ITfParser;
50 using ModelType = InferenceModel<ParserType, DataType>;
51
surmeh013537c2c2018-05-18 16:31:43 +010052 // Coverity fix: ClassifierInferenceTestMain() may throw uncaught exceptions.
telsoa01c577f2c2018-08-31 09:22:23 +010053 retVal = armnn::test::ClassifierInferenceTestMain<DatabaseType, ParserType>(
54 argc, argv,
surmeh01c3b012e2018-09-12 16:00:26 +010055 "mobilenet_v1_1.0_224_frozen.pb", // model name
56 true, // model is binary
57 "input", "MobilenetV1/Predictions/Reshape_1", // input and output tensor names
58 { 0, 1, 2 }, // test images to test with as above
telsoa01c577f2c2018-08-31 09:22:23 +010059 [&imageSet](const char* dataDir, const ModelType&) {
60 // This creates a 224x224x3 NHWC float tensor to pass to Armnn
61 return DatabaseType(
surmeh013537c2c2018-05-18 16:31:43 +010062 dataDir,
63 224,
64 224,
65 imageSet);
66 },
67 &inputTensorShape);
68 }
69 catch (const std::exception& e)
70 {
71 // Coverity fix: BOOST_LOG_TRIVIAL (typically used to report errors) may throw an
72 // exception of type std::length_error.
73 // Using stderr instead in this context as there is no point in nesting try-catch blocks here.
74 std::cerr << "WARNING: TfMobileNet-Armnn: An error has occurred when running "
75 "the classifier inference tests: " << e.what() << std::endl;
76 }
77 return retVal;
surmeh01bceff2f2018-03-29 16:29:27 +010078}