blob: c3f71299f6fd90ece327cbffa21b156972775507 [file] [log] [blame]
Anthony Barbier2a07e182017-08-04 18:20:27 +01001/*
Giorgio Arena33b103b2021-01-08 10:37:15 +00002 * Copyright (c) 2017-2021 Arm Limited.
Anthony Barbier2a07e182017-08-04 18:20:27 +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 */
24
25#include "utils/GraphUtils.h"
hakanardof36ac352018-02-16 10:06:34 +010026
Georgios Pinitascac13b12018-04-27 19:07:19 +010027#include "arm_compute/core/Helpers.h"
28#include "arm_compute/core/Types.h"
Georgios Pinitas12be7ab2018-07-03 12:06:23 +010029#include "arm_compute/graph/Logger.h"
hakanardof36ac352018-02-16 10:06:34 +010030#include "arm_compute/runtime/SubTensor.h"
Michalis Spyrou6bff1952019-10-02 17:22:11 +010031
32#pragma GCC diagnostic push
33#pragma GCC diagnostic ignored "-Wunused-parameter"
Georgios Pinitas7c3b9242018-06-21 19:01:25 +010034#include "utils/ImageLoader.h"
Michalis Spyrou6bff1952019-10-02 17:22:11 +010035#pragma GCC diagnostic pop
Anthony Barbier2a07e182017-08-04 18:20:27 +010036#include "utils/Utils.h"
37
Michalis Spyrou7c60c992019-10-10 14:33:47 +010038#include <inttypes.h>
Gian Marco44ec2e72017-10-19 14:13:38 +010039#include <iomanip>
Georgios Pinitas12be7ab2018-07-03 12:06:23 +010040#include <limits>
Anthony Barbier2a07e182017-08-04 18:20:27 +010041
42using namespace arm_compute::graph_utils;
43
Georgios Pinitascac13b12018-04-27 19:07:19 +010044namespace
45{
Anthony Barbier4ead11a2018-08-06 09:25:36 +010046std::pair<arm_compute::TensorShape, arm_compute::PermutationVector> compute_permutation_parameters(const arm_compute::TensorShape &shape,
Georgios Pinitascac13b12018-04-27 19:07:19 +010047 arm_compute::DataLayout data_layout)
48{
49 // Set permutation parameters if needed
50 arm_compute::TensorShape permuted_shape = shape;
51 arm_compute::PermutationVector perm;
52 // Permute only if num_dimensions greater than 2
53 if(shape.num_dimensions() > 2)
54 {
55 perm = (data_layout == arm_compute::DataLayout::NHWC) ? arm_compute::PermutationVector(2U, 0U, 1U) : arm_compute::PermutationVector(1U, 2U, 0U);
56
57 arm_compute::PermutationVector perm_shape = (data_layout == arm_compute::DataLayout::NCHW) ? arm_compute::PermutationVector(2U, 0U, 1U) : arm_compute::PermutationVector(1U, 2U, 0U);
58 arm_compute::permute(permuted_shape, perm_shape);
59 }
60
61 return std::make_pair(permuted_shape, perm);
62}
63} // namespace
64
Georgios Pinitasbe2772a2018-08-17 15:33:39 +010065TFPreproccessor::TFPreproccessor(float min_range, float max_range)
66 : _min_range(min_range), _max_range(max_range)
67{
68}
Georgios Pinitas140fdc72018-02-16 11:42:38 +000069void TFPreproccessor::preprocess(ITensor &tensor)
70{
giuros01351bd132019-08-23 14:27:30 +010071 if(tensor.info()->data_type() == DataType::F32)
72 {
73 preprocess_typed<float>(tensor);
74 }
75 else if(tensor.info()->data_type() == DataType::F16)
76 {
77 preprocess_typed<half>(tensor);
78 }
79 else
80 {
81 ARM_COMPUTE_ERROR("NOT SUPPORTED!");
82 }
83}
84
85template <typename T>
86void TFPreproccessor::preprocess_typed(ITensor &tensor)
87{
Georgios Pinitas140fdc72018-02-16 11:42:38 +000088 Window window;
89 window.use_tensor_dimensions(tensor.info()->tensor_shape());
90
Georgios Pinitasbe2772a2018-08-17 15:33:39 +010091 const float range = _max_range - _min_range;
Georgios Pinitas140fdc72018-02-16 11:42:38 +000092 execute_window_loop(window, [&](const Coordinates & id)
93 {
giuros01351bd132019-08-23 14:27:30 +010094 const T value = *reinterpret_cast<T *>(tensor.ptr_to_element(id));
95 float res = value / 255.f; // Normalize to [0, 1]
96 res = res * range + _min_range; // Map to [min_range, max_range]
97 *reinterpret_cast<T *>(tensor.ptr_to_element(id)) = res;
Georgios Pinitas140fdc72018-02-16 11:42:38 +000098 });
99}
100
Georgios Pinitasb54c6442019-04-03 13:18:14 +0100101CaffePreproccessor::CaffePreproccessor(std::array<float, 3> mean, bool bgr, float scale)
102 : _mean(mean), _bgr(bgr), _scale(scale)
Georgios Pinitas140fdc72018-02-16 11:42:38 +0000103{
104 if(_bgr)
105 {
106 std::swap(_mean[0], _mean[2]);
107 }
108}
109
110void CaffePreproccessor::preprocess(ITensor &tensor)
111{
giuros01351bd132019-08-23 14:27:30 +0100112 if(tensor.info()->data_type() == DataType::F32)
113 {
114 preprocess_typed<float>(tensor);
115 }
116 else if(tensor.info()->data_type() == DataType::F16)
117 {
118 preprocess_typed<half>(tensor);
119 }
120 else
121 {
122 ARM_COMPUTE_ERROR("NOT SUPPORTED!");
123 }
124}
125
126template <typename T>
127void CaffePreproccessor::preprocess_typed(ITensor &tensor)
128{
Georgios Pinitas140fdc72018-02-16 11:42:38 +0000129 Window window;
130 window.use_tensor_dimensions(tensor.info()->tensor_shape());
Georgios Pinitas7d66a8e2018-07-17 12:28:42 +0100131 const int channel_idx = get_data_layout_dimension_index(tensor.info()->data_layout(), DataLayoutDimension::CHANNEL);
132
Georgios Pinitas140fdc72018-02-16 11:42:38 +0000133 execute_window_loop(window, [&](const Coordinates & id)
134 {
giuros01351bd132019-08-23 14:27:30 +0100135 const T value = *reinterpret_cast<T *>(tensor.ptr_to_element(id)) - T(_mean[id[channel_idx]]);
136 *reinterpret_cast<T *>(tensor.ptr_to_element(id)) = value * T(_scale);
Georgios Pinitas140fdc72018-02-16 11:42:38 +0000137 });
138}
139
Anthony Barbier2a07e182017-08-04 18:20:27 +0100140PPMWriter::PPMWriter(std::string name, unsigned int maximum)
141 : _name(std::move(name)), _iterator(0), _maximum(maximum)
142{
143}
144
145bool PPMWriter::access_tensor(ITensor &tensor)
146{
147 std::stringstream ss;
148 ss << _name << _iterator << ".ppm";
Gian Marco44ec2e72017-10-19 14:13:38 +0100149
150 arm_compute::utils::save_to_ppm(tensor, ss.str());
Anthony Barbier2a07e182017-08-04 18:20:27 +0100151
152 _iterator++;
153 if(_maximum == 0)
154 {
155 return true;
156 }
157 return _iterator < _maximum;
158}
159
160DummyAccessor::DummyAccessor(unsigned int maximum)
161 : _iterator(0), _maximum(maximum)
162{
163}
164
Giorgio Arena9c67d382021-08-20 15:24:03 +0100165bool DummyAccessor::access_tensor_data()
166{
167 return false;
168}
169
Anthony Barbier2a07e182017-08-04 18:20:27 +0100170bool DummyAccessor::access_tensor(ITensor &tensor)
171{
172 ARM_COMPUTE_UNUSED(tensor);
Anthony Barbier8a042112018-08-21 18:16:53 +0100173 bool ret = _maximum == 0 || _iterator < _maximum;
Anthony Barbier2a07e182017-08-04 18:20:27 +0100174 if(_iterator == _maximum)
175 {
176 _iterator = 0;
177 }
178 else
179 {
180 _iterator++;
181 }
182 return ret;
183}
184
Isabella Gottardia7acb3c2019-01-08 13:48:44 +0000185NumPyAccessor::NumPyAccessor(std::string npy_path, TensorShape shape, DataType data_type, DataLayout data_layout, std::ostream &output_stream)
Isabella Gottardi88d5b222018-04-06 12:24:55 +0100186 : _npy_tensor(), _filename(std::move(npy_path)), _output_stream(output_stream)
187{
Isabella Gottardia7acb3c2019-01-08 13:48:44 +0000188 NumPyBinLoader loader(_filename, data_layout);
Isabella Gottardi88d5b222018-04-06 12:24:55 +0100189
190 TensorInfo info(shape, 1, data_type);
Isabella Gottardia7acb3c2019-01-08 13:48:44 +0000191 info.set_data_layout(data_layout);
192
Isabella Gottardi88d5b222018-04-06 12:24:55 +0100193 _npy_tensor.allocator()->init(info);
194 _npy_tensor.allocator()->allocate();
195
196 loader.access_tensor(_npy_tensor);
197}
198
199template <typename T>
Isabella Gottardi0ae5de92019-03-14 10:32:11 +0000200void NumPyAccessor::access_numpy_tensor(ITensor &tensor, T tolerance)
Isabella Gottardi88d5b222018-04-06 12:24:55 +0100201{
Gian Marco Iodicead486e22018-08-07 17:17:06 +0100202 const int num_elements = tensor.info()->tensor_shape().total_size();
Isabella Gottardi0ae5de92019-03-14 10:32:11 +0000203 int num_mismatches = utils::compare_tensor<T>(tensor, _npy_tensor, tolerance);
Isabella Gottardi88d5b222018-04-06 12:24:55 +0100204 float percentage_mismatches = static_cast<float>(num_mismatches) / num_elements;
205
206 _output_stream << "Results: " << 100.f - (percentage_mismatches * 100) << " % matches with the provided output[" << _filename << "]." << std::endl;
Isabella Gottardi0ae5de92019-03-14 10:32:11 +0000207 _output_stream << " " << num_elements - num_mismatches << " out of " << num_elements << " matches with the provided output[" << _filename << "]." << std::endl
208 << std::endl;
Isabella Gottardi88d5b222018-04-06 12:24:55 +0100209}
210
211bool NumPyAccessor::access_tensor(ITensor &tensor)
212{
Isabella Gottardi0ae5de92019-03-14 10:32:11 +0000213 ARM_COMPUTE_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(&tensor, 1, DataType::F32, DataType::QASYMM8);
Isabella Gottardi88d5b222018-04-06 12:24:55 +0100214 ARM_COMPUTE_ERROR_ON(_npy_tensor.info()->dimension(0) != tensor.info()->dimension(0));
215
216 switch(tensor.info()->data_type())
217 {
Isabella Gottardi0ae5de92019-03-14 10:32:11 +0000218 case DataType::QASYMM8:
219 access_numpy_tensor<qasymm8_t>(tensor, 0);
220 break;
Isabella Gottardi88d5b222018-04-06 12:24:55 +0100221 case DataType::F32:
Isabella Gottardi0ae5de92019-03-14 10:32:11 +0000222 access_numpy_tensor<float>(tensor, 0.0001f);
Isabella Gottardi88d5b222018-04-06 12:24:55 +0100223 break;
224 default:
225 ARM_COMPUTE_ERROR("NOT SUPPORTED!");
226 }
227
228 return false;
229}
230
Isabella Gottardicd4e9ab2019-11-05 17:50:27 +0000231#ifdef ARM_COMPUTE_ASSERTS_ENABLED
232PrintAccessor::PrintAccessor(std::ostream &output_stream, IOFormatInfo io_fmt)
233 : _output_stream(output_stream), _io_fmt(io_fmt)
234{
235}
236
237bool PrintAccessor::access_tensor(ITensor &tensor)
238{
239 tensor.print(_output_stream, _io_fmt);
240 return false;
241}
242#endif /* ARM_COMPUTE_ASSERTS_ENABLED */
243
Isabella Gottardi2ea37612019-07-16 11:48:51 +0100244SaveNumPyAccessor::SaveNumPyAccessor(std::string npy_name, const bool is_fortran)
245 : _npy_name(std::move(npy_name)), _is_fortran(is_fortran)
246{
247}
248
249bool SaveNumPyAccessor::access_tensor(ITensor &tensor)
250{
251 ARM_COMPUTE_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(&tensor, 1, DataType::F32);
252
253 utils::save_to_npy(tensor, _npy_name, _is_fortran);
254
255 return false;
256}
257
Georgios Pinitas12be7ab2018-07-03 12:06:23 +0100258ImageAccessor::ImageAccessor(std::string filename, bool bgr, std::unique_ptr<IPreprocessor> preprocessor)
Anthony Barbier8a042112018-08-21 18:16:53 +0100259 : _already_loaded(false), _filename(std::move(filename)), _bgr(bgr), _preprocessor(std::move(preprocessor))
Gian Marco44ec2e72017-10-19 14:13:38 +0100260{
261}
262
Georgios Pinitas12be7ab2018-07-03 12:06:23 +0100263bool ImageAccessor::access_tensor(ITensor &tensor)
Gian Marco44ec2e72017-10-19 14:13:38 +0100264{
Anthony Barbier8a042112018-08-21 18:16:53 +0100265 if(!_already_loaded)
Georgios Pinitascac13b12018-04-27 19:07:19 +0100266 {
Anthony Barbier8a042112018-08-21 18:16:53 +0100267 auto image_loader = utils::ImageLoaderFactory::create(_filename);
268 ARM_COMPUTE_EXIT_ON_MSG(image_loader == nullptr, "Unsupported image type");
Isabella Gottardia4c61882017-11-03 12:11:55 +0000269
Anthony Barbier8a042112018-08-21 18:16:53 +0100270 // Open image file
271 image_loader->open(_filename);
Gian Marco44ec2e72017-10-19 14:13:38 +0100272
Anthony Barbier8a042112018-08-21 18:16:53 +0100273 // Get permutated shape and permutation parameters
274 TensorShape permuted_shape = tensor.info()->tensor_shape();
275 arm_compute::PermutationVector perm;
276 if(tensor.info()->data_layout() != DataLayout::NCHW)
277 {
278 std::tie(permuted_shape, perm) = compute_permutation_parameters(tensor.info()->tensor_shape(), tensor.info()->data_layout());
279 }
Sheri Zhangd80792a2020-11-05 10:43:37 +0000280
281#ifdef __arm__
Michalis Spyrou7c60c992019-10-10 14:33:47 +0100282 ARM_COMPUTE_EXIT_ON_MSG_VAR(image_loader->width() != permuted_shape.x() || image_loader->height() != permuted_shape.y(),
283 "Failed to load image file: dimensions [%d,%d] not correct, expected [%" PRIu32 ",%" PRIu32 "].",
284 image_loader->width(), image_loader->height(), permuted_shape.x(), permuted_shape.y());
Sheri Zhangd80792a2020-11-05 10:43:37 +0000285#else // __arm__
286 ARM_COMPUTE_EXIT_ON_MSG_VAR(image_loader->width() != permuted_shape.x() || image_loader->height() != permuted_shape.y(),
287 "Failed to load image file: dimensions [%d,%d] not correct, expected [%" PRIu64 ",%" PRIu64 "].",
Georgios Pinitas45514032020-12-30 00:03:09 +0000288 image_loader->width(), image_loader->height(),
289 static_cast<uint64_t>(permuted_shape.x()), static_cast<uint64_t>(permuted_shape.y()));
Sheri Zhangd80792a2020-11-05 10:43:37 +0000290#endif // __arm__
Anthony Barbier8a042112018-08-21 18:16:53 +0100291
292 // Fill the tensor with the PPM content (BGR)
293 image_loader->fill_planar_tensor(tensor, _bgr);
294
295 // Preprocess tensor
296 if(_preprocessor)
297 {
298 _preprocessor->preprocess(tensor);
299 }
Georgios Pinitas140fdc72018-02-16 11:42:38 +0000300 }
Gian Marco44ec2e72017-10-19 14:13:38 +0100301
Anthony Barbier8a042112018-08-21 18:16:53 +0100302 _already_loaded = !_already_loaded;
303 return _already_loaded;
Gian Marco44ec2e72017-10-19 14:13:38 +0100304}
305
Georgios Pinitas12be7ab2018-07-03 12:06:23 +0100306ValidationInputAccessor::ValidationInputAccessor(const std::string &image_list,
307 std::string images_path,
308 std::unique_ptr<IPreprocessor> preprocessor,
309 bool bgr,
310 unsigned int start,
Anthony Barbier40606df2018-07-23 14:41:59 +0100311 unsigned int end,
312 std::ostream &output_stream)
313 : _path(std::move(images_path)), _images(), _preprocessor(std::move(preprocessor)), _bgr(bgr), _offset(0), _output_stream(output_stream)
Georgios Pinitas7c3b9242018-06-21 19:01:25 +0100314{
Anthony Barbier40606df2018-07-23 14:41:59 +0100315 ARM_COMPUTE_EXIT_ON_MSG(start > end, "Invalid validation range!");
Georgios Pinitas7c3b9242018-06-21 19:01:25 +0100316
317 std::ifstream ifs;
318 try
319 {
320 ifs.exceptions(std::ifstream::badbit);
321 ifs.open(image_list, std::ios::in | std::ios::binary);
322
323 // Parse image names
324 unsigned int counter = 0;
325 for(std::string line; !std::getline(ifs, line).fail() && counter <= end; ++counter)
326 {
327 // Add image to process if withing range
328 if(counter >= start)
329 {
330 std::stringstream linestream(line);
331 std::string image_name;
332
333 linestream >> image_name;
334 _images.emplace_back(std::move(image_name));
335 }
336 }
337 }
338 catch(const std::ifstream::failure &e)
339 {
Michalis Spyrou7c60c992019-10-10 14:33:47 +0100340 ARM_COMPUTE_ERROR_VAR("Accessing %s: %s", image_list.c_str(), e.what());
Georgios Pinitas7c3b9242018-06-21 19:01:25 +0100341 }
342}
343
344bool ValidationInputAccessor::access_tensor(arm_compute::ITensor &tensor)
345{
346 bool ret = _offset < _images.size();
347 if(ret)
348 {
349 utils::JPEGLoader jpeg;
350
351 // Open JPEG file
Georgios Pinitas12be7ab2018-07-03 12:06:23 +0100352 std::string image_name = _path + _images[_offset++];
353 jpeg.open(image_name);
Anthony Barbier40606df2018-07-23 14:41:59 +0100354 _output_stream << "[" << _offset << "/" << _images.size() << "] Validating " << image_name << std::endl;
Georgios Pinitas7c3b9242018-06-21 19:01:25 +0100355
356 // Get permutated shape and permutation parameters
357 TensorShape permuted_shape = tensor.info()->tensor_shape();
358 arm_compute::PermutationVector perm;
359 if(tensor.info()->data_layout() != DataLayout::NCHW)
360 {
Anthony Barbier4ead11a2018-08-06 09:25:36 +0100361 std::tie(permuted_shape, perm) = compute_permutation_parameters(tensor.info()->tensor_shape(),
Georgios Pinitas7c3b9242018-06-21 19:01:25 +0100362 tensor.info()->data_layout());
363 }
Sheri Zhangd80792a2020-11-05 10:43:37 +0000364
365#ifdef __arm__
Michalis Spyrou7c60c992019-10-10 14:33:47 +0100366 ARM_COMPUTE_EXIT_ON_MSG_VAR(jpeg.width() != permuted_shape.x() || jpeg.height() != permuted_shape.y(),
367 "Failed to load image file: dimensions [%d,%d] not correct, expected [%" PRIu32 ",%" PRIu32 "].",
368 jpeg.width(), jpeg.height(), permuted_shape.x(), permuted_shape.y());
Sheri Zhangd80792a2020-11-05 10:43:37 +0000369#else // __arm__
370 ARM_COMPUTE_EXIT_ON_MSG_VAR(jpeg.width() != permuted_shape.x() || jpeg.height() != permuted_shape.y(),
371 "Failed to load image file: dimensions [%d,%d] not correct, expected [%" PRIu64 ",%" PRIu64 "].",
Georgios Pinitas45514032020-12-30 00:03:09 +0000372 jpeg.width(), jpeg.height(),
373 static_cast<uint64_t>(permuted_shape.x()), static_cast<uint64_t>(permuted_shape.y()));
Sheri Zhangd80792a2020-11-05 10:43:37 +0000374#endif // __arm__
Georgios Pinitas7c3b9242018-06-21 19:01:25 +0100375
Georgios Pinitas12be7ab2018-07-03 12:06:23 +0100376 // Fill the tensor with the JPEG content (BGR)
Georgios Pinitas7c3b9242018-06-21 19:01:25 +0100377 jpeg.fill_planar_tensor(tensor, _bgr);
Georgios Pinitas12be7ab2018-07-03 12:06:23 +0100378
379 // Preprocess tensor
380 if(_preprocessor)
381 {
382 _preprocessor->preprocess(tensor);
383 }
Georgios Pinitas7c3b9242018-06-21 19:01:25 +0100384 }
385
386 return ret;
387}
388
Georgios Pinitas7908de72018-06-27 12:34:20 +0100389ValidationOutputAccessor::ValidationOutputAccessor(const std::string &image_list,
Georgios Pinitas7908de72018-06-27 12:34:20 +0100390 std::ostream &output_stream,
391 unsigned int start,
392 unsigned int end)
Georgios Pinitas12be7ab2018-07-03 12:06:23 +0100393 : _results(), _output_stream(output_stream), _offset(0), _positive_samples_top1(0), _positive_samples_top5(0)
Georgios Pinitas7908de72018-06-27 12:34:20 +0100394{
Anthony Barbier40606df2018-07-23 14:41:59 +0100395 ARM_COMPUTE_EXIT_ON_MSG(start > end, "Invalid validation range!");
Georgios Pinitas7908de72018-06-27 12:34:20 +0100396
397 std::ifstream ifs;
398 try
399 {
400 ifs.exceptions(std::ifstream::badbit);
401 ifs.open(image_list, std::ios::in | std::ios::binary);
402
403 // Parse image correctly classified labels
404 unsigned int counter = 0;
405 for(std::string line; !std::getline(ifs, line).fail() && counter <= end; ++counter)
406 {
407 // Add label if within range
408 if(counter >= start)
409 {
410 std::stringstream linestream(line);
411 std::string image_name;
412 int result;
413
414 linestream >> image_name >> result;
415 _results.emplace_back(result);
416 }
417 }
418 }
419 catch(const std::ifstream::failure &e)
420 {
Michalis Spyrou7c60c992019-10-10 14:33:47 +0100421 ARM_COMPUTE_ERROR_VAR("Accessing %s: %s", image_list.c_str(), e.what());
Georgios Pinitas7908de72018-06-27 12:34:20 +0100422 }
423}
424
425void ValidationOutputAccessor::reset()
426{
Georgios Pinitas12be7ab2018-07-03 12:06:23 +0100427 _offset = 0;
428 _positive_samples_top1 = 0;
429 _positive_samples_top5 = 0;
Georgios Pinitas7908de72018-06-27 12:34:20 +0100430}
431
432bool ValidationOutputAccessor::access_tensor(arm_compute::ITensor &tensor)
433{
Georgios Pinitas12be7ab2018-07-03 12:06:23 +0100434 bool ret = _offset < _results.size();
435 if(ret)
Georgios Pinitas7908de72018-06-27 12:34:20 +0100436 {
437 // Get results
438 std::vector<size_t> tensor_results;
439 switch(tensor.info()->data_type())
440 {
441 case DataType::QASYMM8:
442 tensor_results = access_predictions_tensor<uint8_t>(tensor);
443 break;
giuros01351bd132019-08-23 14:27:30 +0100444 case DataType::F16:
445 tensor_results = access_predictions_tensor<half>(tensor);
446 break;
Georgios Pinitas7908de72018-06-27 12:34:20 +0100447 case DataType::F32:
448 tensor_results = access_predictions_tensor<float>(tensor);
449 break;
450 default:
451 ARM_COMPUTE_ERROR("NOT SUPPORTED!");
452 }
453
454 // Check if tensor results are within top-n accuracy
455 size_t correct_label = _results[_offset++];
Georgios Pinitas7908de72018-06-27 12:34:20 +0100456
Georgios Pinitas12be7ab2018-07-03 12:06:23 +0100457 aggregate_sample(tensor_results, _positive_samples_top1, 1, correct_label);
458 aggregate_sample(tensor_results, _positive_samples_top5, 5, correct_label);
Georgios Pinitas7908de72018-06-27 12:34:20 +0100459 }
460
461 // Report top_n accuracy
Georgios Pinitas12be7ab2018-07-03 12:06:23 +0100462 if(_offset >= _results.size())
Georgios Pinitas7908de72018-06-27 12:34:20 +0100463 {
Georgios Pinitas12be7ab2018-07-03 12:06:23 +0100464 report_top_n(1, _results.size(), _positive_samples_top1);
465 report_top_n(5, _results.size(), _positive_samples_top5);
Georgios Pinitas7908de72018-06-27 12:34:20 +0100466 }
467
468 return ret;
469}
470
471template <typename T>
472std::vector<size_t> ValidationOutputAccessor::access_predictions_tensor(arm_compute::ITensor &tensor)
473{
474 // Get the predicted class
475 std::vector<size_t> index;
476
477 const auto output_net = reinterpret_cast<T *>(tensor.buffer() + tensor.info()->offset_first_element_in_bytes());
478 const size_t num_classes = tensor.info()->dimension(0);
479
480 index.resize(num_classes);
481
482 // Sort results
483 std::iota(std::begin(index), std::end(index), static_cast<size_t>(0));
484 std::sort(std::begin(index), std::end(index),
485 [&](size_t a, size_t b)
486 {
487 return output_net[a] > output_net[b];
488 });
489
490 return index;
491}
492
Georgios Pinitas12be7ab2018-07-03 12:06:23 +0100493void ValidationOutputAccessor::aggregate_sample(const std::vector<size_t> &res, size_t &positive_samples, size_t top_n, size_t correct_label)
494{
495 auto is_valid_label = [correct_label](size_t label)
496 {
497 return label == correct_label;
498 };
499
500 if(std::any_of(std::begin(res), std::begin(res) + top_n, is_valid_label))
501 {
502 ++positive_samples;
503 }
504}
505
506void ValidationOutputAccessor::report_top_n(size_t top_n, size_t total_samples, size_t positive_samples)
507{
508 size_t negative_samples = total_samples - positive_samples;
509 float accuracy = positive_samples / static_cast<float>(total_samples);
510
511 _output_stream << "----------Top " << top_n << " accuracy ----------" << std::endl
512 << std::endl;
513 _output_stream << "Positive samples : " << positive_samples << std::endl;
514 _output_stream << "Negative samples : " << negative_samples << std::endl;
515 _output_stream << "Accuracy : " << accuracy << std::endl;
516}
517
Isabella Gottardi7234ed82018-11-27 08:51:10 +0000518DetectionOutputAccessor::DetectionOutputAccessor(const std::string &labels_path, std::vector<TensorShape> &imgs_tensor_shapes, std::ostream &output_stream)
519 : _labels(), _tensor_shapes(std::move(imgs_tensor_shapes)), _output_stream(output_stream)
520{
521 _labels.clear();
522
523 std::ifstream ifs;
524
525 try
526 {
527 ifs.exceptions(std::ifstream::badbit);
528 ifs.open(labels_path, std::ios::in | std::ios::binary);
529
530 for(std::string line; !std::getline(ifs, line).fail();)
531 {
532 _labels.emplace_back(line);
533 }
534 }
535 catch(const std::ifstream::failure &e)
536 {
Michalis Spyrou7c60c992019-10-10 14:33:47 +0100537 ARM_COMPUTE_ERROR_VAR("Accessing %s: %s", labels_path.c_str(), e.what());
Isabella Gottardi7234ed82018-11-27 08:51:10 +0000538 }
539}
540
541template <typename T>
542void DetectionOutputAccessor::access_predictions_tensor(ITensor &tensor)
543{
544 const size_t num_detection = tensor.info()->valid_region().shape.y();
545 const auto output_prt = reinterpret_cast<T *>(tensor.buffer() + tensor.info()->offset_first_element_in_bytes());
546
547 if(num_detection > 0)
548 {
549 _output_stream << "---------------------- Detections ----------------------" << std::endl
550 << std::endl;
551
552 _output_stream << std::left << std::setprecision(4) << std::setw(8) << "Image | " << std::setw(8) << "Label | " << std::setw(12) << "Confidence | "
553 << "[ xmin, ymin, xmax, ymax ]" << std::endl;
554
555 for(size_t i = 0; i < num_detection; ++i)
556 {
557 auto im = static_cast<const int>(output_prt[i * 7]);
558 _output_stream << std::setw(8) << im << std::setw(8)
559 << _labels[output_prt[i * 7 + 1]] << std::setw(12) << output_prt[i * 7 + 2]
560 << " [" << (output_prt[i * 7 + 3] * _tensor_shapes[im].x())
561 << ", " << (output_prt[i * 7 + 4] * _tensor_shapes[im].y())
562 << ", " << (output_prt[i * 7 + 5] * _tensor_shapes[im].x())
563 << ", " << (output_prt[i * 7 + 6] * _tensor_shapes[im].y())
564 << "]" << std::endl;
565 }
566 }
567 else
568 {
569 _output_stream << "No detection found." << std::endl;
570 }
571}
572
573bool DetectionOutputAccessor::access_tensor(ITensor &tensor)
574{
575 ARM_COMPUTE_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(&tensor, 1, DataType::F32);
576
577 switch(tensor.info()->data_type())
578 {
579 case DataType::F32:
580 access_predictions_tensor<float>(tensor);
581 break;
582 default:
583 ARM_COMPUTE_ERROR("NOT SUPPORTED!");
584 }
585
586 return false;
587}
588
Gian Marco44ec2e72017-10-19 14:13:38 +0100589TopNPredictionsAccessor::TopNPredictionsAccessor(const std::string &labels_path, size_t top_n, std::ostream &output_stream)
590 : _labels(), _output_stream(output_stream), _top_n(top_n)
591{
592 _labels.clear();
593
594 std::ifstream ifs;
595
596 try
597 {
598 ifs.exceptions(std::ifstream::badbit);
599 ifs.open(labels_path, std::ios::in | std::ios::binary);
600
601 for(std::string line; !std::getline(ifs, line).fail();)
602 {
603 _labels.emplace_back(line);
604 }
605 }
606 catch(const std::ifstream::failure &e)
607 {
Michalis Spyrou7c60c992019-10-10 14:33:47 +0100608 ARM_COMPUTE_ERROR_VAR("Accessing %s: %s", labels_path.c_str(), e.what());
Gian Marco44ec2e72017-10-19 14:13:38 +0100609 }
610}
611
Giorgio Arenaa66eaa22017-12-21 19:50:06 +0000612template <typename T>
613void TopNPredictionsAccessor::access_predictions_tensor(ITensor &tensor)
Gian Marco44ec2e72017-10-19 14:13:38 +0100614{
Gian Marco44ec2e72017-10-19 14:13:38 +0100615 // Get the predicted class
Giorgio Arenaa66eaa22017-12-21 19:50:06 +0000616 std::vector<T> classes_prob;
Gian Marco44ec2e72017-10-19 14:13:38 +0100617 std::vector<size_t> index;
618
Giorgio Arenaa66eaa22017-12-21 19:50:06 +0000619 const auto output_net = reinterpret_cast<T *>(tensor.buffer() + tensor.info()->offset_first_element_in_bytes());
Gian Marco44ec2e72017-10-19 14:13:38 +0100620 const size_t num_classes = tensor.info()->dimension(0);
621
622 classes_prob.resize(num_classes);
623 index.resize(num_classes);
624
625 std::copy(output_net, output_net + num_classes, classes_prob.begin());
626
627 // Sort results
628 std::iota(std::begin(index), std::end(index), static_cast<size_t>(0));
629 std::sort(std::begin(index), std::end(index),
630 [&](size_t a, size_t b)
631 {
632 return classes_prob[a] > classes_prob[b];
633 });
634
635 _output_stream << "---------- Top " << _top_n << " predictions ----------" << std::endl
636 << std::endl;
637 for(size_t i = 0; i < _top_n; ++i)
638 {
639 _output_stream << std::fixed << std::setprecision(4)
Giorgio Arenaa66eaa22017-12-21 19:50:06 +0000640 << +classes_prob[index.at(i)]
Gian Marco44ec2e72017-10-19 14:13:38 +0100641 << " - [id = " << index.at(i) << "]"
642 << ", " << _labels[index.at(i)] << std::endl;
643 }
Giorgio Arenaa66eaa22017-12-21 19:50:06 +0000644}
645
646bool TopNPredictionsAccessor::access_tensor(ITensor &tensor)
647{
648 ARM_COMPUTE_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(&tensor, 1, DataType::F32, DataType::QASYMM8);
649 ARM_COMPUTE_ERROR_ON(_labels.size() != tensor.info()->dimension(0));
650
651 switch(tensor.info()->data_type())
652 {
653 case DataType::QASYMM8:
654 access_predictions_tensor<uint8_t>(tensor);
655 break;
656 case DataType::F32:
657 access_predictions_tensor<float>(tensor);
658 break;
659 default:
660 ARM_COMPUTE_ERROR("NOT SUPPORTED!");
661 }
Gian Marco44ec2e72017-10-19 14:13:38 +0100662
663 return false;
664}
665
Michalis Spyrou53b405f2017-09-27 15:55:31 +0100666RandomAccessor::RandomAccessor(PixelValue lower, PixelValue upper, std::random_device::result_type seed)
667 : _lower(lower), _upper(upper), _seed(seed)
668{
669}
670
671template <typename T, typename D>
672void RandomAccessor::fill(ITensor &tensor, D &&distribution)
673{
674 std::mt19937 gen(_seed);
675
hakanardof36ac352018-02-16 10:06:34 +0100676 if(tensor.info()->padding().empty() && (dynamic_cast<SubTensor *>(&tensor) == nullptr))
Michalis Spyrou53b405f2017-09-27 15:55:31 +0100677 {
678 for(size_t offset = 0; offset < tensor.info()->total_size(); offset += tensor.info()->element_size())
679 {
Michele Di Giorgio88731f02018-09-25 16:49:27 +0100680 const auto value = static_cast<T>(distribution(gen));
Michalis Spyrou53b405f2017-09-27 15:55:31 +0100681 *reinterpret_cast<T *>(tensor.buffer() + offset) = value;
682 }
683 }
684 else
685 {
686 // If tensor has padding accessing tensor elements through execution window.
687 Window window;
688 window.use_tensor_dimensions(tensor.info()->tensor_shape());
689
690 execute_window_loop(window, [&](const Coordinates & id)
691 {
Michele Di Giorgio88731f02018-09-25 16:49:27 +0100692 const auto value = static_cast<T>(distribution(gen));
Michalis Spyrou53b405f2017-09-27 15:55:31 +0100693 *reinterpret_cast<T *>(tensor.ptr_to_element(id)) = value;
694 });
695 }
696}
697
698bool RandomAccessor::access_tensor(ITensor &tensor)
699{
700 switch(tensor.info()->data_type())
701 {
John Kesapidesfb68ca12019-01-21 14:13:27 +0000702 case DataType::QASYMM8:
Michalis Spyrou53b405f2017-09-27 15:55:31 +0100703 case DataType::U8:
704 {
705 std::uniform_int_distribution<uint8_t> distribution_u8(_lower.get<uint8_t>(), _upper.get<uint8_t>());
706 fill<uint8_t>(tensor, distribution_u8);
707 break;
708 }
709 case DataType::S8:
Michalis Spyrou53b405f2017-09-27 15:55:31 +0100710 {
711 std::uniform_int_distribution<int8_t> distribution_s8(_lower.get<int8_t>(), _upper.get<int8_t>());
712 fill<int8_t>(tensor, distribution_s8);
713 break;
714 }
715 case DataType::U16:
716 {
717 std::uniform_int_distribution<uint16_t> distribution_u16(_lower.get<uint16_t>(), _upper.get<uint16_t>());
718 fill<uint16_t>(tensor, distribution_u16);
719 break;
720 }
721 case DataType::S16:
Michalis Spyrou53b405f2017-09-27 15:55:31 +0100722 {
723 std::uniform_int_distribution<int16_t> distribution_s16(_lower.get<int16_t>(), _upper.get<int16_t>());
724 fill<int16_t>(tensor, distribution_s16);
725 break;
726 }
727 case DataType::U32:
728 {
729 std::uniform_int_distribution<uint32_t> distribution_u32(_lower.get<uint32_t>(), _upper.get<uint32_t>());
730 fill<uint32_t>(tensor, distribution_u32);
731 break;
732 }
733 case DataType::S32:
734 {
735 std::uniform_int_distribution<int32_t> distribution_s32(_lower.get<int32_t>(), _upper.get<int32_t>());
736 fill<int32_t>(tensor, distribution_s32);
737 break;
738 }
739 case DataType::U64:
740 {
741 std::uniform_int_distribution<uint64_t> distribution_u64(_lower.get<uint64_t>(), _upper.get<uint64_t>());
742 fill<uint64_t>(tensor, distribution_u64);
743 break;
744 }
745 case DataType::S64:
746 {
747 std::uniform_int_distribution<int64_t> distribution_s64(_lower.get<int64_t>(), _upper.get<int64_t>());
748 fill<int64_t>(tensor, distribution_s64);
749 break;
750 }
751 case DataType::F16:
752 {
Giorgio Arena33b103b2021-01-08 10:37:15 +0000753 arm_compute::utils::uniform_real_distribution_16bit<half> distribution_f16(_lower.get<float>(), _upper.get<float>());
Michele Di Giorgio88731f02018-09-25 16:49:27 +0100754 fill<half>(tensor, distribution_f16);
Michalis Spyrou53b405f2017-09-27 15:55:31 +0100755 break;
756 }
757 case DataType::F32:
758 {
759 std::uniform_real_distribution<float> distribution_f32(_lower.get<float>(), _upper.get<float>());
760 fill<float>(tensor, distribution_f32);
761 break;
762 }
763 case DataType::F64:
764 {
765 std::uniform_real_distribution<double> distribution_f64(_lower.get<double>(), _upper.get<double>());
766 fill<double>(tensor, distribution_f64);
767 break;
768 }
769 default:
770 ARM_COMPUTE_ERROR("NOT SUPPORTED!");
771 }
772 return true;
773}
774
Georgios Pinitascac13b12018-04-27 19:07:19 +0100775NumPyBinLoader::NumPyBinLoader(std::string filename, DataLayout file_layout)
Anthony Barbier8a042112018-08-21 18:16:53 +0100776 : _already_loaded(false), _filename(std::move(filename)), _file_layout(file_layout)
Anthony Barbier2a07e182017-08-04 18:20:27 +0100777{
778}
779
780bool NumPyBinLoader::access_tensor(ITensor &tensor)
781{
Anthony Barbier8a042112018-08-21 18:16:53 +0100782 if(!_already_loaded)
783 {
784 utils::NPYLoader loader;
785 loader.open(_filename, _file_layout);
786 loader.fill_tensor(tensor);
787 }
Anthony Barbier2a07e182017-08-04 18:20:27 +0100788
Anthony Barbier8a042112018-08-21 18:16:53 +0100789 _already_loaded = !_already_loaded;
790 return _already_loaded;
Anthony Barbier87f21cd2017-11-10 16:27:32 +0000791}