blob: e7fc55c7e7316ef2940a23122a634399a3719eda [file] [log] [blame]
telsoa014fcda012018-03-09 14:13:49 +00001//
2// Copyright © 2017 Arm Ltd. All rights reserved.
3// See LICENSE file in the project root for full license information.
4//
5#include "../InferenceTest.hpp"
6#include "../ImageNetDatabase.hpp"
7#include "armnnCaffeParser/ICaffeParser.hpp"
8
9int main(int argc, char* argv[])
10{
11 armnn::TensorShape inputTensorShape({ 1, 3, 224, 224 });
12 return armnn::test::ClassifierInferenceTestMain<ImageNetDatabase, armnnCaffeParser::ICaffeParser>(
13 argc, argv, "VGG_CNN_S.caffemodel", true,
14 "input", "prob", { 0 },
15 [](const char* dataDir) { return ImageNetDatabase(dataDir, 224, 224); },
16 &inputTensorShape);
17}