blob: 743dd1a50c7a0d9b4e8822c48b7a92169a2f20a2 [file] [log] [blame]
Georgios Pinitas236bfe72017-11-23 15:59:55 +00001/*
Georgios Pinitas7f530b32018-01-22 11:20:44 +00002 * Copyright (c) 2017-2018 ARM Limited.
Georgios Pinitas236bfe72017-11-23 15:59:55 +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"
Georgios Pinitas236bfe72017-11-23 15:59:55 +000025#include "support/ToolchainSupport.h"
26#include "utils/GraphUtils.h"
27#include "utils/Utils.h"
28
29#include <cstdlib>
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;
Georgios Pinitas236bfe72017-11-23 15:59:55 +000033using namespace arm_compute::graph_utils;
34
Georgios Pinitas236bfe72017-11-23 15:59:55 +000035/** Example demonstrating how to implement MobileNet's network using the Compute Library's graph API
36 *
37 * @param[in] argc Number of arguments
Michele Di Giorgioe3fba0a2018-02-14 14:18:01 +000038 * @param[in] argv Arguments ( [optional] Target (0 = NEON, 1 = OpenCL, 2 = OpenCL with Tuner), [optional] Path to the weights folder, [optional] image, [optional] labels )
Georgios Pinitas236bfe72017-11-23 15:59:55 +000039 */
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +000040class GraphMobilenetExample : public Example
Georgios Pinitas236bfe72017-11-23 15:59:55 +000041{
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +000042public:
43 void do_setup(int argc, char **argv) override
44 {
45 std::string data_path; /* Path to the trainable data */
46 std::string image; /* Image data */
47 std::string label; /* Label data */
Georgios Pinitas236bfe72017-11-23 15:59:55 +000048
Georgios Pinitas140fdc72018-02-16 11:42:38 +000049 // Create a preprocessor object
50 std::unique_ptr<IPreprocessor> preprocessor = arm_compute::support::cpp14::make_unique<TFPreproccessor>();
Georgios Pinitas236bfe72017-11-23 15:59:55 +000051
Michele Di Giorgioe3fba0a2018-02-14 14:18:01 +000052 // Set target. 0 (NEON), 1 (OpenCL), 2 (OpenCL with Tuner). By default it is NEON
Georgios Pinitasd8734b52017-12-22 15:27:52 +000053 const int target = argc > 1 ? std::strtol(argv[1], nullptr, 10) : 0;
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010054 Target target_hint = set_target_hint(target);
Georgios Pinitasd8734b52017-12-22 15:27:52 +000055 ConvolutionMethod convolution_hint = ConvolutionMethod::GEMM;
56 DepthwiseConvolutionMethod depthwise_convolution_hint = DepthwiseConvolutionMethod::OPTIMIZED_3x3;
Gian Marcobfa3b522017-12-12 10:08:38 +000057
Georgios Pinitas7f530b32018-01-22 11:20:44 +000058 // Set model to execute. 0 (MobileNetV1_1.0_224), 1 (MobileNetV1_0.75_160)
59 int model_id = (argc > 2) ? std::strtol(argv[2], nullptr, 10) : 0;
60 ARM_COMPUTE_ERROR_ON_MSG(model_id > 1, "Invalid model ID. Model must be 0 (MobileNetV1_1.0_224) or 1 (MobileNetV1_0.75_160)");
61 float depth_scale = (model_id == 0) ? 1.f : 0.75;
62 unsigned int spatial_size = (model_id == 0) ? 224 : 160;
63 std::string model_path = (model_id == 0) ? "/cnn_data/mobilenet_v1_1_224_model/" : "/cnn_data/mobilenet_v1_075_160_model/";
64
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +000065 // Parse arguments
66 if(argc < 2)
67 {
68 // Print help
Georgios Pinitas7f530b32018-01-22 11:20:44 +000069 std::cout << "Usage: " << argv[0] << " [target] [model] [path_to_data] [image] [labels]\n\n";
70 std::cout << "No model ID provided: using MobileNetV1_1.0_224\n\n";
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +000071 std::cout << "No data folder provided: using random values\n\n";
72 }
73 else if(argc == 2)
74 {
Georgios Pinitas7f530b32018-01-22 11:20:44 +000075 std::cout << "Usage: " << argv[0] << " " << argv[1] << " [model] [path_to_data] [image] [labels]\n\n";
76 std::cout << "No model ID provided: using MobileNetV1_1.0_224\n\n";
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +000077 std::cout << "No data folder provided: using random values\n\n";
78 }
79 else if(argc == 3)
80 {
Georgios Pinitas7f530b32018-01-22 11:20:44 +000081 std::cout << "Usage: " << argv[0] << " " << argv[1] << " " << argv[2] << " [path_to_data] [image] [labels]\n\n";
82 std::cout << "No data folder provided: using random values\n\n";
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +000083 }
84 else if(argc == 4)
85 {
Georgios Pinitas7f530b32018-01-22 11:20:44 +000086 data_path = argv[3];
87 std::cout << "Usage: " << argv[0] << " " << argv[1] << " " << argv[2] << " " << argv[3] << " [image] [labels]\n\n";
88 std::cout << "No image provided: using random values\n\n";
89 }
90 else if(argc == 5)
91 {
92 data_path = argv[3];
93 image = argv[4];
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +000094 std::cout << "Usage: " << argv[0] << " " << argv[1] << " " << argv[2] << " " << argv[3] << " [labels]\n\n";
95 std::cout << "No text file with labels provided: skipping output accessor\n\n";
96 }
97 else
98 {
Georgios Pinitas7f530b32018-01-22 11:20:44 +000099 data_path = argv[3];
100 image = argv[4];
101 label = argv[5];
102 }
103
104 // Add model path to data path
105 if(!data_path.empty())
106 {
107 data_path += model_path;
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000108 }
109
110 graph << target_hint
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000111 << convolution_hint
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000112 << depthwise_convolution_hint
113 << InputLayer(TensorDescriptor(TensorShape(spatial_size, spatial_size, 3U, 1U), DataType::F32),
114 get_input_accessor(image, std::move(preprocessor), false))
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000115 << ConvolutionLayer(
Georgios Pinitas7f530b32018-01-22 11:20:44 +0000116 3U, 3U, 32U * depth_scale,
117 get_weights_accessor(data_path, "Conv2d_0_weights.npy"),
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000118 std::unique_ptr<arm_compute::graph::ITensorAccessor>(nullptr),
119 PadStrideInfo(2, 2, 0, 1, 0, 1, DimensionRoundingType::FLOOR))
120 << BatchNormalizationLayer(
Georgios Pinitas7f530b32018-01-22 11:20:44 +0000121 get_weights_accessor(data_path, "Conv2d_0_BatchNorm_moving_mean.npy"),
122 get_weights_accessor(data_path, "Conv2d_0_BatchNorm_moving_variance.npy"),
123 get_weights_accessor(data_path, "Conv2d_0_BatchNorm_gamma.npy"),
124 get_weights_accessor(data_path, "Conv2d_0_BatchNorm_beta.npy"),
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000125 0.001f)
Georgios Pinitas41c482d2018-04-17 13:23:26 +0100126 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::BOUNDED_RELU, 6.f));
127 graph << get_dwsc_node(data_path, "Conv2d_1", 64 * depth_scale, PadStrideInfo(1, 1, 1, 1), PadStrideInfo(1, 1, 0, 0));
128 graph << get_dwsc_node(data_path, "Conv2d_2", 128 * depth_scale, PadStrideInfo(2, 2, 0, 1, 0, 1, DimensionRoundingType::CEIL), PadStrideInfo(1, 1, 0, 0));
129 graph << get_dwsc_node(data_path, "Conv2d_3", 128 * depth_scale, PadStrideInfo(1, 1, 1, 1, 1, 1, DimensionRoundingType::CEIL), PadStrideInfo(1, 1, 0, 0));
130 graph << get_dwsc_node(data_path, "Conv2d_4", 256 * depth_scale, PadStrideInfo(2, 2, 0, 1, 0, 1, DimensionRoundingType::CEIL), PadStrideInfo(1, 1, 0, 0));
131 graph << get_dwsc_node(data_path, "Conv2d_5", 256 * depth_scale, PadStrideInfo(1, 1, 1, 1, 1, 1, DimensionRoundingType::CEIL), PadStrideInfo(1, 1, 0, 0));
132 graph << get_dwsc_node(data_path, "Conv2d_6", 512 * depth_scale, PadStrideInfo(2, 2, 0, 1, 0, 1, DimensionRoundingType::CEIL), PadStrideInfo(1, 1, 0, 0));
133 graph << get_dwsc_node(data_path, "Conv2d_7", 512 * depth_scale, PadStrideInfo(1, 1, 1, 1, 1, 1, DimensionRoundingType::CEIL), PadStrideInfo(1, 1, 0, 0));
134 graph << get_dwsc_node(data_path, "Conv2d_8", 512 * depth_scale, PadStrideInfo(1, 1, 1, 1, 1, 1, DimensionRoundingType::CEIL), PadStrideInfo(1, 1, 0, 0));
135 graph << get_dwsc_node(data_path, "Conv2d_9", 512 * depth_scale, PadStrideInfo(1, 1, 1, 1, 1, 1, DimensionRoundingType::CEIL), PadStrideInfo(1, 1, 0, 0));
136 graph << get_dwsc_node(data_path, "Conv2d_10", 512 * depth_scale, PadStrideInfo(1, 1, 1, 1, 1, 1, DimensionRoundingType::CEIL), PadStrideInfo(1, 1, 0, 0));
137 graph << get_dwsc_node(data_path, "Conv2d_11", 512 * depth_scale, PadStrideInfo(1, 1, 1, 1, 1, 1, DimensionRoundingType::CEIL), PadStrideInfo(1, 1, 0, 0));
138 graph << get_dwsc_node(data_path, "Conv2d_12", 1024 * depth_scale, PadStrideInfo(2, 2, 0, 1, 0, 1, DimensionRoundingType::CEIL), PadStrideInfo(1, 1, 0, 0));
139 graph << get_dwsc_node(data_path, "Conv2d_13", 1024 * depth_scale, PadStrideInfo(1, 1, 1, 1, 1, 1, DimensionRoundingType::CEIL), PadStrideInfo(1, 1, 0, 0));
140 graph << PoolingLayer(PoolingLayerInfo(PoolingType::AVG))
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000141 << ConvolutionLayer(
142 1U, 1U, 1001U,
Georgios Pinitas7f530b32018-01-22 11:20:44 +0000143 get_weights_accessor(data_path, "Logits_Conv2d_1c_1x1_weights.npy"),
144 get_weights_accessor(data_path, "Logits_Conv2d_1c_1x1_biases.npy"),
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000145 PadStrideInfo(1, 1, 0, 0))
146 << ReshapeLayer(TensorShape(1001U))
147 << SoftmaxLayer()
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000148 << OutputLayer(get_output_accessor(label, 5));
Gian Marcoc1b6e372018-02-21 18:03:26 +0000149
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000150 // Finalize graph
Georgios Pinitas9a8c6722018-03-21 17:52:35 +0000151 GraphConfig config;
152 config.use_function_memory_manager = true;
153 config.use_tuner = (target == 2);
154 graph.finalize(target_hint, config);
Georgios Pinitas236bfe72017-11-23 15:59:55 +0000155 }
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000156 void do_run() override
Georgios Pinitas236bfe72017-11-23 15:59:55 +0000157 {
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000158 // Run graph
159 graph.run();
Georgios Pinitas236bfe72017-11-23 15:59:55 +0000160 }
161
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000162private:
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000163 Stream graph{ 0, "MobileNetV1" };
Gian Marcobfa3b522017-12-12 10:08:38 +0000164
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000165 BranchLayer get_dwsc_node(const std::string &data_path, std::string &&param_path,
166 unsigned int conv_filt,
167 PadStrideInfo dwc_pad_stride_info, PadStrideInfo conv_pad_stride_info)
168 {
Georgios Pinitas7f530b32018-01-22 11:20:44 +0000169 std::string total_path = param_path + "_";
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000170 SubStream sg(graph);
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000171 sg << DepthwiseConvolutionLayer(
172 3U, 3U,
173 get_weights_accessor(data_path, total_path + "depthwise_depthwise_weights.npy"),
174 std::unique_ptr<arm_compute::graph::ITensorAccessor>(nullptr),
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000175 dwc_pad_stride_info)
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000176 << BatchNormalizationLayer(
177 get_weights_accessor(data_path, total_path + "depthwise_BatchNorm_moving_mean.npy"),
178 get_weights_accessor(data_path, total_path + "depthwise_BatchNorm_moving_variance.npy"),
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000179 get_weights_accessor(data_path, total_path + "depthwise_BatchNorm_gamma.npy"),
Georgios Pinitas7f530b32018-01-22 11:20:44 +0000180 get_weights_accessor(data_path, total_path + "depthwise_BatchNorm_beta.npy"),
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000181 0.001f)
182 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::BOUNDED_RELU, 6.f))
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000183 << ConvolutionLayer(
184 1U, 1U, conv_filt,
185 get_weights_accessor(data_path, total_path + "pointwise_weights.npy"),
186 std::unique_ptr<arm_compute::graph::ITensorAccessor>(nullptr),
187 conv_pad_stride_info)
188 << BatchNormalizationLayer(
189 get_weights_accessor(data_path, total_path + "pointwise_BatchNorm_moving_mean.npy"),
190 get_weights_accessor(data_path, total_path + "pointwise_BatchNorm_moving_variance.npy"),
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000191 get_weights_accessor(data_path, total_path + "pointwise_BatchNorm_gamma.npy"),
Georgios Pinitas7f530b32018-01-22 11:20:44 +0000192 get_weights_accessor(data_path, total_path + "pointwise_BatchNorm_beta.npy"),
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000193 0.001f)
194 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::BOUNDED_RELU, 6.f));
Gian Marcobfa3b522017-12-12 10:08:38 +0000195
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000196 return BranchLayer(std::move(sg));
197 }
198};
Georgios Pinitas236bfe72017-11-23 15:59:55 +0000199
200/** Main program for MobileNetV1
201 *
202 * @param[in] argc Number of arguments
Georgios Pinitas7f530b32018-01-22 11:20:44 +0000203 * @param[in] argv Arguments ( [optional] Target (0 = NEON, 1 = OpenCL),
204 * [optional] Model ID (0 = MobileNetV1_1.0_224, 1 = MobileNetV1_0.75_160),
205 * [optional] Path to the weights folder,
206 * [optional] image,
207 * [optional] labels )
Georgios Pinitas236bfe72017-11-23 15:59:55 +0000208 */
Anthony Barbier6db0ff52018-01-05 10:59:12 +0000209int main(int argc, char **argv)
Georgios Pinitas236bfe72017-11-23 15:59:55 +0000210{
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000211 return arm_compute::utils::run_example<GraphMobilenetExample>(argc, argv);
Georgios Pinitas236bfe72017-11-23 15:59:55 +0000212}