blob: 929354465527a0976e2fc2a14c7fb150143265f9 [file] [log] [blame]
Isabella Gottardi9f20bda2017-11-03 17:16:20 +00001/*
SiCong Li4841c972021-02-03 12:17:35 +00002 * Copyright (c) 2017-2021 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"
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010025
Isabella Gottardi9f20bda2017-11-03 17:16:20 +000026#include "support/ToolchainSupport.h"
Georgios Pinitas12be7ab2018-07-03 12:06:23 +010027#include "utils/CommonGraphOptions.h"
Isabella Gottardi9f20bda2017-11-03 17:16:20 +000028#include "utils/GraphUtils.h"
29#include "utils/Utils.h"
30
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +000031using namespace arm_compute::utils;
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010032using namespace arm_compute::graph::frontend;
Isabella Gottardi9f20bda2017-11-03 17:16:20 +000033using namespace arm_compute::graph_utils;
Georgios Pinitas108ab0b2018-09-14 18:35:11 +010034/** Example demonstrating how to implement VGG19's network using the Compute Library's graph API */
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +000035class GraphVGG19Example : public Example
Isabella Gottardi9f20bda2017-11-03 17:16:20 +000036{
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +000037public:
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010038 GraphVGG19Example() : 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 {
43 // Parse arguments
44 cmd_parser.parse(argc, argv);
Georgios Pinitascd60a5f2019-08-21 17:06:54 +010045 cmd_parser.validate();
Georgios Pinitas12be7ab2018-07-03 12:06:23 +010046
47 // Consume common parameters
48 common_params = consume_common_graph_parameters(common_opts);
49
50 // Return when help menu is requested
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010051 if (common_params.help)
Georgios Pinitas12be7ab2018-07-03 12:06:23 +010052 {
53 cmd_parser.print_help(argv[0]);
54 return false;
55 }
56
Georgios Pinitas12be7ab2018-07-03 12:06:23 +010057 // Print parameter values
58 std::cout << common_params << std::endl;
59
60 // Get trainable parameters data path
61 std::string data_path = common_params.data_path;
Isabella Gottardi9f20bda2017-11-03 17:16:20 +000062
Georgios Pinitas140fdc72018-02-16 11:42:38 +000063 // Create a preprocessor object
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010064 const std::array<float, 3> mean_rgb{{123.68f, 116.779f, 103.939f}};
Georgios Pinitas40f51a62020-11-21 03:04:18 +000065 std::unique_ptr<IPreprocessor> preprocessor = std::make_unique<CaffePreproccessor>(mean_rgb);
Isabella Gottardi9f20bda2017-11-03 17:16:20 +000066
Georgios Pinitas7d66a8e2018-07-17 12:28:42 +010067 // Create input descriptor
Sang-Hoon Park11fedda2020-01-15 14:44:04 +000068 const auto operation_layout = common_params.data_layout;
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010069 const TensorShape tensor_shape =
70 permute_shape(TensorShape(224U, 224U, 3U, common_params.batches), DataLayout::NCHW, operation_layout);
71 TensorDescriptor input_descriptor =
72 TensorDescriptor(tensor_shape, common_params.data_type).set_layout(operation_layout);
Georgios Pinitas7d66a8e2018-07-17 12:28:42 +010073
74 // Set weights trained layout
75 const DataLayout weights_layout = DataLayout::NCHW;
76
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010077 graph
78 << common_params.target << common_params.fast_math_hint
79 << InputLayer(input_descriptor, get_input_accessor(common_params, std::move(preprocessor)))
80 // Layer 1
81 << ConvolutionLayer(
82 3U, 3U, 64U, get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv1_1_w.npy", weights_layout),
83 get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv1_1_b.npy"), PadStrideInfo(1, 1, 1, 1))
84 .set_name("conv1_1")
85 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU))
86 .set_name("conv1_1/Relu")
87 << ConvolutionLayer(
88 3U, 3U, 64U, get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv1_2_w.npy", weights_layout),
89 get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv1_2_b.npy"), PadStrideInfo(1, 1, 1, 1))
90 .set_name("conv1_2")
91 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU))
92 .set_name("conv1_2/Relu")
93 << PoolingLayer(PoolingLayerInfo(PoolingType::MAX, 2, operation_layout, PadStrideInfo(2, 2, 0, 0)))
94 .set_name("pool1")
95 // Layer 2
96 << ConvolutionLayer(
97 3U, 3U, 128U, get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv2_1_w.npy", weights_layout),
98 get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv2_1_b.npy"), PadStrideInfo(1, 1, 1, 1))
99 .set_name("conv2_1")
100 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU))
101 .set_name("conv2_1/Relu")
102 << ConvolutionLayer(
103 3U, 3U, 128U, get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv2_2_w.npy", weights_layout),
104 get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv2_2_b.npy"), PadStrideInfo(1, 1, 1, 1))
105 .set_name("conv2_2")
106 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU))
107 .set_name("conv2_2/Relu")
108 << PoolingLayer(PoolingLayerInfo(PoolingType::MAX, 2, operation_layout, PadStrideInfo(2, 2, 0, 0)))
109 .set_name("pool2")
110 // Layer 3
111 << ConvolutionLayer(
112 3U, 3U, 256U, get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv3_1_w.npy", weights_layout),
113 get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv3_1_b.npy"), PadStrideInfo(1, 1, 1, 1))
114 .set_name("conv3_1")
115 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU))
116 .set_name("conv3_1/Relu")
117 << ConvolutionLayer(
118 3U, 3U, 256U, get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv3_2_w.npy", weights_layout),
119 get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv3_2_b.npy"), PadStrideInfo(1, 1, 1, 1))
120 .set_name("conv3_2")
121 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU))
122 .set_name("conv3_2/Relu")
123 << ConvolutionLayer(
124 3U, 3U, 256U, get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv3_3_w.npy", weights_layout),
125 get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv3_3_b.npy"), PadStrideInfo(1, 1, 1, 1))
126 .set_name("conv3_3")
127 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU))
128 .set_name("conv3_3/Relu")
129 << ConvolutionLayer(
130 3U, 3U, 256U, get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv3_4_w.npy", weights_layout),
131 get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv3_4_b.npy"), PadStrideInfo(1, 1, 1, 1))
132 .set_name("conv3_4")
133 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU))
134 .set_name("conv3_4/Relu")
135 << PoolingLayer(PoolingLayerInfo(PoolingType::MAX, 2, operation_layout, PadStrideInfo(2, 2, 0, 0)))
136 .set_name("pool3")
137 // Layer 4
138 << ConvolutionLayer(
139 3U, 3U, 512U, get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv4_1_w.npy", weights_layout),
140 get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv4_1_b.npy"), PadStrideInfo(1, 1, 1, 1))
141 .set_name("conv4_1")
142 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU))
143 .set_name("conv4_1/Relu")
144 << ConvolutionLayer(
145 3U, 3U, 512U, get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv4_2_w.npy", weights_layout),
146 get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv4_2_b.npy"), PadStrideInfo(1, 1, 1, 1))
147 .set_name("conv4_2")
148 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU))
149 .set_name("conv4_2/Relu")
150 << ConvolutionLayer(
151 3U, 3U, 512U, get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv4_3_w.npy", weights_layout),
152 get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv4_3_b.npy"), PadStrideInfo(1, 1, 1, 1))
153 .set_name("conv4_3")
154 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU))
155 .set_name("conv4_3/Relu")
156 << ConvolutionLayer(
157 3U, 3U, 512U, get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv4_4_w.npy", weights_layout),
158 get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv4_4_b.npy"), PadStrideInfo(1, 1, 1, 1))
159 .set_name("conv4_4")
160 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU))
161 .set_name("conv4_4/Relu")
162 << PoolingLayer(PoolingLayerInfo(PoolingType::MAX, 2, operation_layout, PadStrideInfo(2, 2, 0, 0)))
163 .set_name("pool4")
164 // Layer 5
165 << ConvolutionLayer(
166 3U, 3U, 512U, get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv5_1_w.npy", weights_layout),
167 get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv5_1_b.npy"), PadStrideInfo(1, 1, 1, 1))
168 .set_name("conv5_1")
169 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU))
170 .set_name("conv5_1/Relu")
171 << ConvolutionLayer(
172 3U, 3U, 512U, get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv5_2_w.npy", weights_layout),
173 get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv5_2_b.npy"), PadStrideInfo(1, 1, 1, 1))
174 .set_name("conv5_2")
175 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU))
176 .set_name("conv5_2/Relu")
177 << ConvolutionLayer(
178 3U, 3U, 512U, get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv5_3_w.npy", weights_layout),
179 get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv5_3_b.npy"), PadStrideInfo(1, 1, 1, 1))
180 .set_name("conv5_3")
181 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU))
182 .set_name("conv5_3/Relu")
183 << ConvolutionLayer(
184 3U, 3U, 512U, get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv5_4_w.npy", weights_layout),
185 get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv5_4_b.npy"), PadStrideInfo(1, 1, 1, 1))
186 .set_name("conv5_4")
187 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU))
188 .set_name("conv5_4/Relu")
189 << PoolingLayer(PoolingLayerInfo(PoolingType::MAX, 2, operation_layout, PadStrideInfo(2, 2, 0, 0)))
190 .set_name("pool5")
191 // Layer 6
192 << FullyConnectedLayer(4096U,
193 get_weights_accessor(data_path, "/cnn_data/vgg19_model/fc6_w.npy", weights_layout),
194 get_weights_accessor(data_path, "/cnn_data/vgg19_model/fc6_b.npy"))
195 .set_name("fc6")
196 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU)).set_name("Relu")
197 // Layer 7
198 << FullyConnectedLayer(4096U,
199 get_weights_accessor(data_path, "/cnn_data/vgg19_model/fc7_w.npy", weights_layout),
200 get_weights_accessor(data_path, "/cnn_data/vgg19_model/fc7_b.npy"))
201 .set_name("fc7")
202 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU)).set_name("Relu_1")
203 // Layer 8
204 << FullyConnectedLayer(1000U,
205 get_weights_accessor(data_path, "/cnn_data/vgg19_model/fc8_w.npy", weights_layout),
206 get_weights_accessor(data_path, "/cnn_data/vgg19_model/fc8_b.npy"))
207 .set_name("fc8")
208 // Softmax
209 << SoftmaxLayer().set_name("prob") << OutputLayer(get_output_accessor(common_params, 5));
Gian Marcoc1b6e372018-02-21 18:03:26 +0000210
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000211 // Finalize graph
Georgios Pinitas9a8c6722018-03-21 17:52:35 +0000212 GraphConfig config;
SiCongLif466d752021-03-01 15:26:18 +0000213 config.num_threads = common_params.threads;
214 config.use_tuner = common_params.enable_tuner;
215 config.tuner_mode = common_params.tuner_mode;
216 config.tuner_file = common_params.tuner_file;
217 config.mlgo_file = common_params.mlgo_file;
218 config.use_synthetic_type = arm_compute::is_data_type_quantized(common_params.data_type);
219 config.synthetic_type = common_params.data_type;
Anthony Barbier7b607dc2018-07-13 15:55:24 +0100220
Georgios Pinitas12be7ab2018-07-03 12:06:23 +0100221 graph.finalize(common_params.target, config);
222
223 return true;
Isabella Gottardi9f20bda2017-11-03 17:16:20 +0000224 }
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000225 void do_run() override
Isabella Gottardi9f20bda2017-11-03 17:16:20 +0000226 {
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000227 // Run graph
228 graph.run();
Isabella Gottardi9f20bda2017-11-03 17:16:20 +0000229 }
230
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000231private:
Georgios Pinitas12be7ab2018-07-03 12:06:23 +0100232 CommandLineParser cmd_parser;
233 CommonGraphOptions common_opts;
234 CommonGraphParams common_params;
235 Stream graph;
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000236};
Isabella Gottardi9f20bda2017-11-03 17:16:20 +0000237
238/** Main program for VGG19
239 *
Georgios Pinitasbdbbbe82018-11-07 16:06:47 +0000240 * Model is based on:
241 * https://arxiv.org/abs/1409.1556
242 * "Very Deep Convolutional Networks for Large-Scale Image Recognition"
243 * Karen Simonyan, Andrew Zisserman
244 *
Georgios Pinitas588ebc52018-12-21 13:39:07 +0000245 * Provenance: www.robots.ox.ac.uk/~vgg/software/very_deep/caffe/VGG_ILSVRC_19_layers.caffemodel
246 *
Georgios Pinitas9f28b392018-07-18 20:01:53 +0100247 * @note To list all the possible arguments execute the binary appended with the --help option
248 *
Isabella Gottardi9f20bda2017-11-03 17:16:20 +0000249 * @param[in] argc Number of arguments
Georgios Pinitas12be7ab2018-07-03 12:06:23 +0100250 * @param[in] argv Arguments
Isabella Gottardi9f20bda2017-11-03 17:16:20 +0000251 */
Anthony Barbier6db0ff52018-01-05 10:59:12 +0000252int main(int argc, char **argv)
Isabella Gottardi9f20bda2017-11-03 17:16:20 +0000253{
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000254 return arm_compute::utils::run_example<GraphVGG19Example>(argc, argv);
Isabella Gottardi9f20bda2017-11-03 17:16:20 +0000255}