ArmNN
 21.02
CaffeSqueezeNet1_0-Armnn.cpp File Reference

Go to the source code of this file.

Functions

int main (int argc, char *argv[])
 

Function Documentation

◆ main()

int main ( int  argc,
char *  argv[] 
)

Definition at line 9 of file CaffeSqueezeNet1_0-Armnn.cpp.

10 {
11  using DataType = float;
12  using DatabaseType = CaffePreprocessor;
13  using ParserType = armnnCaffeParser::ICaffeParser;
14  using ModelType = InferenceModel<ParserType, DataType>;
15 
16  return armnn::test::ClassifierInferenceTestMain<DatabaseType, ParserType>(
17  argc, argv, "squeezenet.caffemodel", true,
18  "input", "prob", { 0 },
19  [](const char* dataDir, const ModelType &) { return CaffePreprocessor(dataDir); });
20 }
DataType
Definition: Types.hpp:32