blob: 63051fb0569001f035c6dac8e474a5641a241031 [file] [log] [blame]
Isabella Gottardi9f20bda2017-11-03 17:16:20 +00001/*
Vidhya Sudhan Loganathan050471e2019-04-25 09:27:24 +01002 * Copyright (c) 2017-2019 ARM Limited.
Isabella Gottardi9f20bda2017-11-03 17:16:20 +00003 *
4 * SPDX-License-Identifier: MIT
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to
8 * deal in the Software without restriction, including without limitation the
9 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
10 * sell copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in all
14 * copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22 * SOFTWARE.
23 */
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010024#include "arm_compute/graph.h"
Isabella Gottardi9f20bda2017-11-03 17:16:20 +000025#include "support/ToolchainSupport.h"
Georgios Pinitas12be7ab2018-07-03 12:06:23 +010026#include "utils/CommonGraphOptions.h"
Isabella Gottardi9f20bda2017-11-03 17:16:20 +000027#include "utils/GraphUtils.h"
28#include "utils/Utils.h"
29
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +000030using namespace arm_compute::utils;
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010031using namespace arm_compute::graph::frontend;
Isabella Gottardi9f20bda2017-11-03 17:16:20 +000032using namespace arm_compute::graph_utils;
Georgios Pinitas108ab0b2018-09-14 18:35:11 +010033/** Example demonstrating how to implement VGG19's network using the Compute Library's graph API */
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +000034class GraphVGG19Example : public Example
Isabella Gottardi9f20bda2017-11-03 17:16:20 +000035{
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +000036public:
Georgios Pinitas12be7ab2018-07-03 12:06:23 +010037 GraphVGG19Example()
38 : cmd_parser(), common_opts(cmd_parser), common_params(), graph(0, "VGG19")
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +000039 {
Georgios Pinitas12be7ab2018-07-03 12:06:23 +010040 }
41 bool do_setup(int argc, char **argv) override
42 {
Pablo Tello0cf77982018-10-24 15:32:39 +010043 // Check if the system has enough RAM to run the example, systems with less than 2GB have
44 // to hint the API to minimize memory consumption otherwise it'll run out of memory and
45 // fail throwing the bad_alloc exception
46 arm_compute::MEMInfo meminfo;
47 const size_t mem_total = meminfo.get_total_in_kb();
48 if(mem_total <= arm_compute::MEMInfo::TWO_GB_IN_KB)
49 {
50 arm_compute::MEMInfo::set_policy(arm_compute::MemoryPolicy::MINIMIZE);
51 }
52
Georgios Pinitas12be7ab2018-07-03 12:06:23 +010053 // Parse arguments
54 cmd_parser.parse(argc, argv);
55
56 // Consume common parameters
57 common_params = consume_common_graph_parameters(common_opts);
58
59 // Return when help menu is requested
60 if(common_params.help)
61 {
62 cmd_parser.print_help(argv[0]);
63 return false;
64 }
65
66 // Checks
Anthony Barbiercdd68c02018-08-23 15:03:41 +010067 ARM_COMPUTE_EXIT_ON_MSG(arm_compute::is_data_type_quantized_asymmetric(common_params.data_type), "QASYMM8 not supported for this graph");
Georgios Pinitas12be7ab2018-07-03 12:06:23 +010068
69 // Print parameter values
70 std::cout << common_params << std::endl;
71
72 // Get trainable parameters data path
73 std::string data_path = common_params.data_path;
Isabella Gottardi9f20bda2017-11-03 17:16:20 +000074
Georgios Pinitas140fdc72018-02-16 11:42:38 +000075 // Create a preprocessor object
76 const std::array<float, 3> mean_rgb{ { 123.68f, 116.779f, 103.939f } };
77 std::unique_ptr<IPreprocessor> preprocessor = arm_compute::support::cpp14::make_unique<CaffePreproccessor>(mean_rgb);
Isabella Gottardi9f20bda2017-11-03 17:16:20 +000078
Georgios Pinitas7d66a8e2018-07-17 12:28:42 +010079 // Create input descriptor
80 const TensorShape tensor_shape = permute_shape(TensorShape(224U, 224U, 3U, 1U), DataLayout::NCHW, common_params.data_layout);
81 TensorDescriptor input_descriptor = TensorDescriptor(tensor_shape, common_params.data_type).set_layout(common_params.data_layout);
82
83 // Set weights trained layout
84 const DataLayout weights_layout = DataLayout::NCHW;
85
Georgios Pinitas12be7ab2018-07-03 12:06:23 +010086 graph << common_params.target
87 << common_params.fast_math_hint
Georgios Pinitas7d66a8e2018-07-17 12:28:42 +010088 << InputLayer(input_descriptor, get_input_accessor(common_params, std::move(preprocessor)))
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +000089 // Layer 1
90 << ConvolutionLayer(
91 3U, 3U, 64U,
Georgios Pinitas7d66a8e2018-07-17 12:28:42 +010092 get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv1_1_w.npy", weights_layout),
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +000093 get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv1_1_b.npy"),
94 PadStrideInfo(1, 1, 1, 1))
Georgios Pinitas5c2fb3f2018-05-01 15:26:20 +010095 .set_name("conv1_1")
96 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU)).set_name("conv1_1/Relu")
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +000097 << ConvolutionLayer(
98 3U, 3U, 64U,
Georgios Pinitas7d66a8e2018-07-17 12:28:42 +010099 get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv1_2_w.npy", weights_layout),
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000100 get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv1_2_b.npy"),
101 PadStrideInfo(1, 1, 1, 1))
Georgios Pinitas5c2fb3f2018-05-01 15:26:20 +0100102 .set_name("conv1_2")
103 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU)).set_name("conv1_2/Relu")
104 << PoolingLayer(PoolingLayerInfo(PoolingType::MAX, 2, PadStrideInfo(2, 2, 0, 0))).set_name("pool1")
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000105 // Layer 2
106 << ConvolutionLayer(
107 3U, 3U, 128U,
Georgios Pinitas7d66a8e2018-07-17 12:28:42 +0100108 get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv2_1_w.npy", weights_layout),
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000109 get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv2_1_b.npy"),
110 PadStrideInfo(1, 1, 1, 1))
Georgios Pinitas5c2fb3f2018-05-01 15:26:20 +0100111 .set_name("conv2_1")
112 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU)).set_name("conv2_1/Relu")
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000113 << ConvolutionLayer(
114 3U, 3U, 128U,
Georgios Pinitas7d66a8e2018-07-17 12:28:42 +0100115 get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv2_2_w.npy", weights_layout),
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000116 get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv2_2_b.npy"),
117 PadStrideInfo(1, 1, 1, 1))
Georgios Pinitas5c2fb3f2018-05-01 15:26:20 +0100118 .set_name("conv2_2")
119 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU)).set_name("conv2_2/Relu")
120 << PoolingLayer(PoolingLayerInfo(PoolingType::MAX, 2, PadStrideInfo(2, 2, 0, 0))).set_name("pool2")
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000121 // Layer 3
122 << ConvolutionLayer(
123 3U, 3U, 256U,
Georgios Pinitas7d66a8e2018-07-17 12:28:42 +0100124 get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv3_1_w.npy", weights_layout),
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000125 get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv3_1_b.npy"),
126 PadStrideInfo(1, 1, 1, 1))
Georgios Pinitas5c2fb3f2018-05-01 15:26:20 +0100127 .set_name("conv3_1")
128 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU)).set_name("conv3_1/Relu")
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000129 << ConvolutionLayer(
130 3U, 3U, 256U,
Georgios Pinitas7d66a8e2018-07-17 12:28:42 +0100131 get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv3_2_w.npy", weights_layout),
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000132 get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv3_2_b.npy"),
133 PadStrideInfo(1, 1, 1, 1))
Georgios Pinitas5c2fb3f2018-05-01 15:26:20 +0100134 .set_name("conv3_2")
135 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU)).set_name("conv3_2/Relu")
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000136 << ConvolutionLayer(
137 3U, 3U, 256U,
Georgios Pinitas7d66a8e2018-07-17 12:28:42 +0100138 get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv3_3_w.npy", weights_layout),
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000139 get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv3_3_b.npy"),
140 PadStrideInfo(1, 1, 1, 1))
Georgios Pinitas5c2fb3f2018-05-01 15:26:20 +0100141 .set_name("conv3_3")
142 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU)).set_name("conv3_3/Relu")
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000143 << ConvolutionLayer(
144 3U, 3U, 256U,
Georgios Pinitas7d66a8e2018-07-17 12:28:42 +0100145 get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv3_4_w.npy", weights_layout),
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000146 get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv3_4_b.npy"),
147 PadStrideInfo(1, 1, 1, 1))
Georgios Pinitas5c2fb3f2018-05-01 15:26:20 +0100148 .set_name("conv3_4")
149 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU)).set_name("conv3_4/Relu")
150 << PoolingLayer(PoolingLayerInfo(PoolingType::MAX, 2, PadStrideInfo(2, 2, 0, 0))).set_name("pool3")
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000151 // Layer 4
152 << ConvolutionLayer(
153 3U, 3U, 512U,
Georgios Pinitas7d66a8e2018-07-17 12:28:42 +0100154 get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv4_1_w.npy", weights_layout),
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000155 get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv4_1_b.npy"),
156 PadStrideInfo(1, 1, 1, 1))
Georgios Pinitas5c2fb3f2018-05-01 15:26:20 +0100157 .set_name("conv4_1")
158 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU)).set_name("conv4_1/Relu")
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000159 << ConvolutionLayer(
160 3U, 3U, 512U,
Georgios Pinitas7d66a8e2018-07-17 12:28:42 +0100161 get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv4_2_w.npy", weights_layout),
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000162 get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv4_2_b.npy"),
163 PadStrideInfo(1, 1, 1, 1))
Georgios Pinitas5c2fb3f2018-05-01 15:26:20 +0100164 .set_name("conv4_2")
165 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU)).set_name("conv4_2/Relu")
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000166 << ConvolutionLayer(
167 3U, 3U, 512U,
Georgios Pinitas7d66a8e2018-07-17 12:28:42 +0100168 get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv4_3_w.npy", weights_layout),
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000169 get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv4_3_b.npy"),
170 PadStrideInfo(1, 1, 1, 1))
Georgios Pinitas5c2fb3f2018-05-01 15:26:20 +0100171 .set_name("conv4_3")
172 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU)).set_name("conv4_3/Relu")
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000173 << ConvolutionLayer(
174 3U, 3U, 512U,
Georgios Pinitas7d66a8e2018-07-17 12:28:42 +0100175 get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv4_4_w.npy", weights_layout),
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000176 get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv4_4_b.npy"),
177 PadStrideInfo(1, 1, 1, 1))
Georgios Pinitas5c2fb3f2018-05-01 15:26:20 +0100178 .set_name("conv4_4")
179 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU)).set_name("conv4_4/Relu")
180 << PoolingLayer(PoolingLayerInfo(PoolingType::MAX, 2, PadStrideInfo(2, 2, 0, 0))).set_name("pool4")
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000181 // Layer 5
182 << ConvolutionLayer(
183 3U, 3U, 512U,
Georgios Pinitas7d66a8e2018-07-17 12:28:42 +0100184 get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv5_1_w.npy", weights_layout),
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000185 get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv5_1_b.npy"),
186 PadStrideInfo(1, 1, 1, 1))
Georgios Pinitas5c2fb3f2018-05-01 15:26:20 +0100187 .set_name("conv5_1")
188 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU)).set_name("conv5_1/Relu")
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000189 << ConvolutionLayer(
190 3U, 3U, 512U,
Georgios Pinitas7d66a8e2018-07-17 12:28:42 +0100191 get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv5_2_w.npy", weights_layout),
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000192 get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv5_2_b.npy"),
193 PadStrideInfo(1, 1, 1, 1))
Georgios Pinitas5c2fb3f2018-05-01 15:26:20 +0100194 .set_name("conv5_2")
195 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU)).set_name("conv5_2/Relu")
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000196 << ConvolutionLayer(
197 3U, 3U, 512U,
Georgios Pinitas7d66a8e2018-07-17 12:28:42 +0100198 get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv5_3_w.npy", weights_layout),
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000199 get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv5_3_b.npy"),
200 PadStrideInfo(1, 1, 1, 1))
Georgios Pinitas5c2fb3f2018-05-01 15:26:20 +0100201 .set_name("conv5_3")
202 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU)).set_name("conv5_3/Relu")
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000203 << ConvolutionLayer(
204 3U, 3U, 512U,
Georgios Pinitas7d66a8e2018-07-17 12:28:42 +0100205 get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv5_4_w.npy", weights_layout),
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000206 get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv5_4_b.npy"),
207 PadStrideInfo(1, 1, 1, 1))
Georgios Pinitas5c2fb3f2018-05-01 15:26:20 +0100208 .set_name("conv5_4")
209 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU)).set_name("conv5_4/Relu")
210 << PoolingLayer(PoolingLayerInfo(PoolingType::MAX, 2, PadStrideInfo(2, 2, 0, 0))).set_name("pool5")
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000211 // Layer 6
212 << FullyConnectedLayer(
213 4096U,
Georgios Pinitas7d66a8e2018-07-17 12:28:42 +0100214 get_weights_accessor(data_path, "/cnn_data/vgg19_model/fc6_w.npy", weights_layout),
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000215 get_weights_accessor(data_path, "/cnn_data/vgg19_model/fc6_b.npy"))
Georgios Pinitas5c2fb3f2018-05-01 15:26:20 +0100216 .set_name("fc6")
217 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU)).set_name("Relu")
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000218 // Layer 7
219 << FullyConnectedLayer(
220 4096U,
Georgios Pinitas7d66a8e2018-07-17 12:28:42 +0100221 get_weights_accessor(data_path, "/cnn_data/vgg19_model/fc7_w.npy", weights_layout),
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000222 get_weights_accessor(data_path, "/cnn_data/vgg19_model/fc7_b.npy"))
Georgios Pinitas5c2fb3f2018-05-01 15:26:20 +0100223 .set_name("fc7")
224 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU)).set_name("Relu_1")
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000225 // Layer 8
226 << FullyConnectedLayer(
227 1000U,
Georgios Pinitas7d66a8e2018-07-17 12:28:42 +0100228 get_weights_accessor(data_path, "/cnn_data/vgg19_model/fc8_w.npy", weights_layout),
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000229 get_weights_accessor(data_path, "/cnn_data/vgg19_model/fc8_b.npy"))
Georgios Pinitas5c2fb3f2018-05-01 15:26:20 +0100230 .set_name("fc8")
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000231 // Softmax
Georgios Pinitas5c2fb3f2018-05-01 15:26:20 +0100232 << SoftmaxLayer().set_name("prob")
Georgios Pinitas12be7ab2018-07-03 12:06:23 +0100233 << OutputLayer(get_output_accessor(common_params, 5));
Gian Marcoc1b6e372018-02-21 18:03:26 +0000234
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000235 // Finalize graph
Georgios Pinitas9a8c6722018-03-21 17:52:35 +0000236 GraphConfig config;
Georgios Pinitas12be7ab2018-07-03 12:06:23 +0100237 config.num_threads = common_params.threads;
238 config.use_tuner = common_params.enable_tuner;
Vidhya Sudhan Loganathan050471e2019-04-25 09:27:24 +0100239 config.tuner_mode = common_params.tuner_mode;
Anthony Barbier7b607dc2018-07-13 15:55:24 +0100240 config.tuner_file = common_params.tuner_file;
241
Georgios Pinitas12be7ab2018-07-03 12:06:23 +0100242 graph.finalize(common_params.target, config);
243
244 return true;
Isabella Gottardi9f20bda2017-11-03 17:16:20 +0000245 }
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000246 void do_run() override
Isabella Gottardi9f20bda2017-11-03 17:16:20 +0000247 {
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000248 // Run graph
249 graph.run();
Isabella Gottardi9f20bda2017-11-03 17:16:20 +0000250 }
251
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000252private:
Georgios Pinitas12be7ab2018-07-03 12:06:23 +0100253 CommandLineParser cmd_parser;
254 CommonGraphOptions common_opts;
255 CommonGraphParams common_params;
256 Stream graph;
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000257};
Isabella Gottardi9f20bda2017-11-03 17:16:20 +0000258
259/** Main program for VGG19
260 *
Georgios Pinitasbdbbbe82018-11-07 16:06:47 +0000261 * Model is based on:
262 * https://arxiv.org/abs/1409.1556
263 * "Very Deep Convolutional Networks for Large-Scale Image Recognition"
264 * Karen Simonyan, Andrew Zisserman
265 *
Georgios Pinitas588ebc52018-12-21 13:39:07 +0000266 * Provenance: www.robots.ox.ac.uk/~vgg/software/very_deep/caffe/VGG_ILSVRC_19_layers.caffemodel
267 *
Georgios Pinitas9f28b392018-07-18 20:01:53 +0100268 * @note To list all the possible arguments execute the binary appended with the --help option
269 *
Isabella Gottardi9f20bda2017-11-03 17:16:20 +0000270 * @param[in] argc Number of arguments
Georgios Pinitas12be7ab2018-07-03 12:06:23 +0100271 * @param[in] argv Arguments
Isabella Gottardi9f20bda2017-11-03 17:16:20 +0000272 */
Anthony Barbier6db0ff52018-01-05 10:59:12 +0000273int main(int argc, char **argv)
Isabella Gottardi9f20bda2017-11-03 17:16:20 +0000274{
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000275 return arm_compute::utils::run_example<GraphVGG19Example>(argc, argv);
Isabella Gottardi9f20bda2017-11-03 17:16:20 +0000276}