blob: 2f2c8bd182b1c644981073988151917f7cddd6ae [file] [log] [blame]
Georgios Pinitas6f669f02017-09-26 12:32:57 +01001/*
Gian Marco36a0a462018-01-12 10:21:40 +00002 * Copyright (c) 2017-2018 ARM Limited.
Georgios Pinitas6f669f02017-09-26 12:32:57 +01003 *
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 Pinitas6f669f02017-09-26 12:32:57 +010024#include "arm_compute/graph/Graph.h"
25#include "arm_compute/graph/Nodes.h"
Georgios Pinitas6f669f02017-09-26 12:32:57 +010026#include "support/ToolchainSupport.h"
27#include "utils/GraphUtils.h"
28#include "utils/Utils.h"
29
30#include <cstdlib>
31#include <iostream>
32#include <memory>
33
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +000034using namespace arm_compute::utils;
Georgios Pinitas6f669f02017-09-26 12:32:57 +010035using namespace arm_compute::graph;
36using namespace arm_compute::graph_utils;
37
Georgios Pinitas6f669f02017-09-26 12:32:57 +010038/** Example demonstrating how to implement AlexNet's network using the Compute Library's graph API
39 *
40 * @param[in] argc Number of arguments
Gian Marcobfa3b522017-12-12 10:08:38 +000041 * @param[in] argv Arguments ( [optional] Target (0 = NEON, 1 = OpenCL), [optional] Path to the weights folder, [optional] image, [optional] labels )
Georgios Pinitas6f669f02017-09-26 12:32:57 +010042 */
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +000043class GraphAlexnetExample : public Example
Georgios Pinitas6f669f02017-09-26 12:32:57 +010044{
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +000045public:
46 void do_setup(int argc, char **argv) override
47 {
48 std::string data_path; /* Path to the trainable data */
49 std::string image; /* Image data */
50 std::string label; /* Label data */
Gian Marco44ec2e72017-10-19 14:13:38 +010051
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +000052 constexpr float mean_r = 122.68f; /* Mean value to subtract from red channel */
53 constexpr float mean_g = 116.67f; /* Mean value to subtract from green channel */
54 constexpr float mean_b = 104.01f; /* Mean value to subtract from blue channel */
Georgios Pinitas6f669f02017-09-26 12:32:57 +010055
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +000056 // Set target. 0 (NEON), 1 (OpenCL). By default it is NEON
Gian Marco36a0a462018-01-12 10:21:40 +000057 TargetHint target_hint = set_target_hint(argc > 1 ? std::strtol(argv[1], nullptr, 10) : 0);
58
59 const bool is_gemm_convolution5x5 = Graph::gpu_target() == arm_compute::GPUTarget::MIDGARD || target_hint == TargetHint::NEON;
60 ConvolutionMethodHint convolution_5x5_hint = is_gemm_convolution5x5 ? ConvolutionMethodHint::GEMM : ConvolutionMethodHint::DIRECT;
Gian Marcobfa3b522017-12-12 10:08:38 +000061
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +000062 // Parse arguments
63 if(argc < 2)
64 {
65 // Print help
66 std::cout << "Usage: " << argv[0] << " [target] [path_to_data] [image] [labels]\n\n";
67 std::cout << "No data folder provided: using random values\n\n";
68 }
69 else if(argc == 2)
70 {
71 std::cout << "Usage: " << argv[0] << " " << argv[1] << " [path_to_data] [image] [labels]\n\n";
72 std::cout << "No data folder provided: using random values\n\n";
73 }
74 else if(argc == 3)
75 {
76 data_path = argv[2];
77 std::cout << "Usage: " << argv[0] << " " << argv[1] << " " << argv[2] << " [image] [labels]\n\n";
78 std::cout << "No image provided: using random values\n\n";
79 }
80 else if(argc == 4)
81 {
82 data_path = argv[2];
83 image = argv[3];
84 std::cout << "Usage: " << argv[0] << " " << argv[1] << " " << argv[2] << " " << argv[3] << " [labels]\n\n";
85 std::cout << "No text file with labels provided: skipping output accessor\n\n";
86 }
87 else
88 {
89 data_path = argv[2];
90 image = argv[3];
91 label = argv[4];
92 }
93
94 graph << target_hint
95 << Tensor(TensorInfo(TensorShape(227U, 227U, 3U, 1U), 1, DataType::F32),
96 get_input_accessor(image, mean_r, mean_g, mean_b))
97 // Layer 1
98 << ConvolutionLayer(
99 11U, 11U, 96U,
100 get_weights_accessor(data_path, "/cnn_data/alexnet_model/conv1_w.npy"),
101 get_weights_accessor(data_path, "/cnn_data/alexnet_model/conv1_b.npy"),
102 PadStrideInfo(4, 4, 0, 0))
103 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU))
104 << NormalizationLayer(NormalizationLayerInfo(NormType::CROSS_MAP, 5, 0.0001f, 0.75f))
105 << PoolingLayer(PoolingLayerInfo(PoolingType::MAX, 3, PadStrideInfo(2, 2, 0, 0)))
106 // Layer 2
Gian Marco36a0a462018-01-12 10:21:40 +0000107 << convolution_5x5_hint
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000108 << ConvolutionLayer(
109 5U, 5U, 256U,
110 get_weights_accessor(data_path, "/cnn_data/alexnet_model/conv2_w.npy"),
111 get_weights_accessor(data_path, "/cnn_data/alexnet_model/conv2_b.npy"),
112 PadStrideInfo(1, 1, 2, 2), 2)
113 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU))
114 << NormalizationLayer(NormalizationLayerInfo(NormType::CROSS_MAP, 5, 0.0001f, 0.75f))
115 << PoolingLayer(PoolingLayerInfo(PoolingType::MAX, 3, PadStrideInfo(2, 2, 0, 0)))
Gian Marco36a0a462018-01-12 10:21:40 +0000116 << ConvolutionMethodHint::GEMM
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000117 // Layer 3
118 << ConvolutionLayer(
119 3U, 3U, 384U,
120 get_weights_accessor(data_path, "/cnn_data/alexnet_model/conv3_w.npy"),
121 get_weights_accessor(data_path, "/cnn_data/alexnet_model/conv3_b.npy"),
122 PadStrideInfo(1, 1, 1, 1))
123 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU))
124 // Layer 4
125 << ConvolutionLayer(
126 3U, 3U, 384U,
127 get_weights_accessor(data_path, "/cnn_data/alexnet_model/conv4_w.npy"),
128 get_weights_accessor(data_path, "/cnn_data/alexnet_model/conv4_b.npy"),
129 PadStrideInfo(1, 1, 1, 1), 2)
130 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU))
131 // Layer 5
132 << ConvolutionLayer(
133 3U, 3U, 256U,
134 get_weights_accessor(data_path, "/cnn_data/alexnet_model/conv5_w.npy"),
135 get_weights_accessor(data_path, "/cnn_data/alexnet_model/conv5_b.npy"),
136 PadStrideInfo(1, 1, 1, 1), 2)
137 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU))
138 << PoolingLayer(PoolingLayerInfo(PoolingType::MAX, 3, PadStrideInfo(2, 2, 0, 0)))
139 // Layer 6
140 << FullyConnectedLayer(
141 4096U,
142 get_weights_accessor(data_path, "/cnn_data/alexnet_model/fc6_w.npy"),
143 get_weights_accessor(data_path, "/cnn_data/alexnet_model/fc6_b.npy"))
144 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU))
145 // Layer 7
146 << FullyConnectedLayer(
147 4096U,
148 get_weights_accessor(data_path, "/cnn_data/alexnet_model/fc7_w.npy"),
149 get_weights_accessor(data_path, "/cnn_data/alexnet_model/fc7_b.npy"))
150 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU))
151 // Layer 8
152 << FullyConnectedLayer(
153 1000U,
154 get_weights_accessor(data_path, "/cnn_data/alexnet_model/fc8_w.npy"),
155 get_weights_accessor(data_path, "/cnn_data/alexnet_model/fc8_b.npy"))
156 // Softmax
157 << SoftmaxLayer()
158 << Tensor(get_output_accessor(label, 5));
Georgios Pinitas6f669f02017-09-26 12:32:57 +0100159 }
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000160 void do_run() override
Georgios Pinitas6f669f02017-09-26 12:32:57 +0100161 {
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000162 // Run graph
163 graph.run();
Georgios Pinitas6f669f02017-09-26 12:32:57 +0100164 }
165
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000166private:
167 Graph graph{};
168};
Georgios Pinitas6f669f02017-09-26 12:32:57 +0100169
170/** Main program for AlexNet
171 *
172 * @param[in] argc Number of arguments
Gian Marcobfa3b522017-12-12 10:08:38 +0000173 * @param[in] argv Arguments ( [optional] Target (0 = NEON, 1 = OpenCL), [optional] Path to the weights folder, [optional] image, [optional] labels )
Georgios Pinitas6f669f02017-09-26 12:32:57 +0100174 */
Anthony Barbier6db0ff52018-01-05 10:59:12 +0000175int main(int argc, char **argv)
Georgios Pinitas6f669f02017-09-26 12:32:57 +0100176{
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000177 return arm_compute::utils::run_example<GraphAlexnetExample>(argc, argv);
Georgios Pinitas6f669f02017-09-26 12:32:57 +0100178}