blob: 26ea02a9fff7047b44dba0941c0ee857a072c837 [file] [log] [blame]
Anthony Barbier2a07e182017-08-04 18:20:27 +01001/*
John Kesapidesfb68ca12019-01-21 14:13:27 +00002 * Copyright (c) 2017-2019 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"
Georgios Pinitas7c3b9242018-06-21 19:01:25 +010031#include "utils/ImageLoader.h"
Anthony Barbier2a07e182017-08-04 18:20:27 +010032#include "utils/Utils.h"
33
Gian Marco44ec2e72017-10-19 14:13:38 +010034#include <iomanip>
Georgios Pinitas12be7ab2018-07-03 12:06:23 +010035#include <limits>
Anthony Barbier2a07e182017-08-04 18:20:27 +010036
37using namespace arm_compute::graph_utils;
38
Georgios Pinitascac13b12018-04-27 19:07:19 +010039namespace
40{
Anthony Barbier4ead11a2018-08-06 09:25:36 +010041std::pair<arm_compute::TensorShape, arm_compute::PermutationVector> compute_permutation_parameters(const arm_compute::TensorShape &shape,
Georgios Pinitascac13b12018-04-27 19:07:19 +010042 arm_compute::DataLayout data_layout)
43{
44 // Set permutation parameters if needed
45 arm_compute::TensorShape permuted_shape = shape;
46 arm_compute::PermutationVector perm;
47 // Permute only if num_dimensions greater than 2
48 if(shape.num_dimensions() > 2)
49 {
50 perm = (data_layout == arm_compute::DataLayout::NHWC) ? arm_compute::PermutationVector(2U, 0U, 1U) : arm_compute::PermutationVector(1U, 2U, 0U);
51
52 arm_compute::PermutationVector perm_shape = (data_layout == arm_compute::DataLayout::NCHW) ? arm_compute::PermutationVector(2U, 0U, 1U) : arm_compute::PermutationVector(1U, 2U, 0U);
53 arm_compute::permute(permuted_shape, perm_shape);
54 }
55
56 return std::make_pair(permuted_shape, perm);
57}
58} // namespace
59
Georgios Pinitasbe2772a2018-08-17 15:33:39 +010060TFPreproccessor::TFPreproccessor(float min_range, float max_range)
61 : _min_range(min_range), _max_range(max_range)
62{
63}
Georgios Pinitas140fdc72018-02-16 11:42:38 +000064void TFPreproccessor::preprocess(ITensor &tensor)
65{
66 Window window;
67 window.use_tensor_dimensions(tensor.info()->tensor_shape());
68
Georgios Pinitasbe2772a2018-08-17 15:33:39 +010069 const float range = _max_range - _min_range;
70
Georgios Pinitas140fdc72018-02-16 11:42:38 +000071 execute_window_loop(window, [&](const Coordinates & id)
72 {
73 const float value = *reinterpret_cast<float *>(tensor.ptr_to_element(id));
Georgios Pinitasbe2772a2018-08-17 15:33:39 +010074 float res = value / 255.f; // Normalize to [0, 1]
75 res = res * range + _min_range; // Map to [min_range, max_range]
Georgios Pinitas140fdc72018-02-16 11:42:38 +000076 *reinterpret_cast<float *>(tensor.ptr_to_element(id)) = res;
77 });
78}
79
Pablo Tello32521432018-11-15 14:43:10 +000080CaffePreproccessor::CaffePreproccessor(std::array<float, 3> mean, float scale, bool bgr)
81 : _mean(mean), _scale(scale), _bgr(bgr)
Georgios Pinitas140fdc72018-02-16 11:42:38 +000082{
83 if(_bgr)
84 {
85 std::swap(_mean[0], _mean[2]);
86 }
87}
88
89void CaffePreproccessor::preprocess(ITensor &tensor)
90{
91 Window window;
92 window.use_tensor_dimensions(tensor.info()->tensor_shape());
93
Georgios Pinitas7d66a8e2018-07-17 12:28:42 +010094 const int channel_idx = get_data_layout_dimension_index(tensor.info()->data_layout(), DataLayoutDimension::CHANNEL);
95
Georgios Pinitas140fdc72018-02-16 11:42:38 +000096 execute_window_loop(window, [&](const Coordinates & id)
97 {
Georgios Pinitas7d66a8e2018-07-17 12:28:42 +010098 const float value = *reinterpret_cast<float *>(tensor.ptr_to_element(id)) - _mean[id[channel_idx]];
Pablo Tello32521432018-11-15 14:43:10 +000099 *reinterpret_cast<float *>(tensor.ptr_to_element(id)) = value * _scale;
Georgios Pinitas140fdc72018-02-16 11:42:38 +0000100 });
101}
102
Anthony Barbier2a07e182017-08-04 18:20:27 +0100103PPMWriter::PPMWriter(std::string name, unsigned int maximum)
104 : _name(std::move(name)), _iterator(0), _maximum(maximum)
105{
106}
107
108bool PPMWriter::access_tensor(ITensor &tensor)
109{
110 std::stringstream ss;
111 ss << _name << _iterator << ".ppm";
Gian Marco44ec2e72017-10-19 14:13:38 +0100112
113 arm_compute::utils::save_to_ppm(tensor, ss.str());
Anthony Barbier2a07e182017-08-04 18:20:27 +0100114
115 _iterator++;
116 if(_maximum == 0)
117 {
118 return true;
119 }
120 return _iterator < _maximum;
121}
122
123DummyAccessor::DummyAccessor(unsigned int maximum)
124 : _iterator(0), _maximum(maximum)
125{
126}
127
128bool DummyAccessor::access_tensor(ITensor &tensor)
129{
130 ARM_COMPUTE_UNUSED(tensor);
Anthony Barbier8a042112018-08-21 18:16:53 +0100131 bool ret = _maximum == 0 || _iterator < _maximum;
Anthony Barbier2a07e182017-08-04 18:20:27 +0100132 if(_iterator == _maximum)
133 {
134 _iterator = 0;
135 }
136 else
137 {
138 _iterator++;
139 }
140 return ret;
141}
142
Isabella Gottardi88d5b222018-04-06 12:24:55 +0100143NumPyAccessor::NumPyAccessor(std::string npy_path, TensorShape shape, DataType data_type, std::ostream &output_stream)
144 : _npy_tensor(), _filename(std::move(npy_path)), _output_stream(output_stream)
145{
146 NumPyBinLoader loader(_filename);
147
148 TensorInfo info(shape, 1, data_type);
149 _npy_tensor.allocator()->init(info);
150 _npy_tensor.allocator()->allocate();
151
152 loader.access_tensor(_npy_tensor);
153}
154
155template <typename T>
Isabella Gottardi0ae5de92019-03-14 10:32:11 +0000156void NumPyAccessor::access_numpy_tensor(ITensor &tensor, T tolerance)
Isabella Gottardi88d5b222018-04-06 12:24:55 +0100157{
Gian Marco Iodicead486e22018-08-07 17:17:06 +0100158 const int num_elements = tensor.info()->tensor_shape().total_size();
Isabella Gottardi0ae5de92019-03-14 10:32:11 +0000159 int num_mismatches = utils::compare_tensor<T>(tensor, _npy_tensor, tolerance);
Isabella Gottardi88d5b222018-04-06 12:24:55 +0100160 float percentage_mismatches = static_cast<float>(num_mismatches) / num_elements;
161
162 _output_stream << "Results: " << 100.f - (percentage_mismatches * 100) << " % matches with the provided output[" << _filename << "]." << std::endl;
Isabella Gottardi0ae5de92019-03-14 10:32:11 +0000163 _output_stream << " " << num_elements - num_mismatches << " out of " << num_elements << " matches with the provided output[" << _filename << "]." << std::endl
164 << std::endl;
Isabella Gottardi88d5b222018-04-06 12:24:55 +0100165}
166
167bool NumPyAccessor::access_tensor(ITensor &tensor)
168{
Isabella Gottardi0ae5de92019-03-14 10:32:11 +0000169 ARM_COMPUTE_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(&tensor, 1, DataType::F32, DataType::QASYMM8);
Isabella Gottardi88d5b222018-04-06 12:24:55 +0100170 ARM_COMPUTE_ERROR_ON(_npy_tensor.info()->dimension(0) != tensor.info()->dimension(0));
171
172 switch(tensor.info()->data_type())
173 {
Isabella Gottardi0ae5de92019-03-14 10:32:11 +0000174 case DataType::QASYMM8:
175 access_numpy_tensor<qasymm8_t>(tensor, 0);
176 break;
Isabella Gottardi88d5b222018-04-06 12:24:55 +0100177 case DataType::F32:
Isabella Gottardi0ae5de92019-03-14 10:32:11 +0000178 access_numpy_tensor<float>(tensor, 0.0001f);
Isabella Gottardi88d5b222018-04-06 12:24:55 +0100179 break;
180 default:
181 ARM_COMPUTE_ERROR("NOT SUPPORTED!");
182 }
183
184 return false;
185}
186
Georgios Pinitas12be7ab2018-07-03 12:06:23 +0100187ImageAccessor::ImageAccessor(std::string filename, bool bgr, std::unique_ptr<IPreprocessor> preprocessor)
Anthony Barbier8a042112018-08-21 18:16:53 +0100188 : _already_loaded(false), _filename(std::move(filename)), _bgr(bgr), _preprocessor(std::move(preprocessor))
Gian Marco44ec2e72017-10-19 14:13:38 +0100189{
190}
191
Georgios Pinitas12be7ab2018-07-03 12:06:23 +0100192bool ImageAccessor::access_tensor(ITensor &tensor)
Gian Marco44ec2e72017-10-19 14:13:38 +0100193{
Anthony Barbier8a042112018-08-21 18:16:53 +0100194 if(!_already_loaded)
Georgios Pinitascac13b12018-04-27 19:07:19 +0100195 {
Anthony Barbier8a042112018-08-21 18:16:53 +0100196 auto image_loader = utils::ImageLoaderFactory::create(_filename);
197 ARM_COMPUTE_EXIT_ON_MSG(image_loader == nullptr, "Unsupported image type");
Isabella Gottardia4c61882017-11-03 12:11:55 +0000198
Anthony Barbier8a042112018-08-21 18:16:53 +0100199 // Open image file
200 image_loader->open(_filename);
Gian Marco44ec2e72017-10-19 14:13:38 +0100201
Anthony Barbier8a042112018-08-21 18:16:53 +0100202 // Get permutated shape and permutation parameters
203 TensorShape permuted_shape = tensor.info()->tensor_shape();
204 arm_compute::PermutationVector perm;
205 if(tensor.info()->data_layout() != DataLayout::NCHW)
206 {
207 std::tie(permuted_shape, perm) = compute_permutation_parameters(tensor.info()->tensor_shape(), tensor.info()->data_layout());
208 }
209 ARM_COMPUTE_EXIT_ON_MSG(image_loader->width() != permuted_shape.x() || image_loader->height() != permuted_shape.y(),
210 "Failed to load image file: dimensions [%d,%d] not correct, expected [%d,%d].",
211 image_loader->width(), image_loader->height(), permuted_shape.x(), permuted_shape.y());
212
213 // Fill the tensor with the PPM content (BGR)
214 image_loader->fill_planar_tensor(tensor, _bgr);
215
216 // Preprocess tensor
217 if(_preprocessor)
218 {
219 _preprocessor->preprocess(tensor);
220 }
Georgios Pinitas140fdc72018-02-16 11:42:38 +0000221 }
Gian Marco44ec2e72017-10-19 14:13:38 +0100222
Anthony Barbier8a042112018-08-21 18:16:53 +0100223 _already_loaded = !_already_loaded;
224 return _already_loaded;
Gian Marco44ec2e72017-10-19 14:13:38 +0100225}
226
Georgios Pinitas12be7ab2018-07-03 12:06:23 +0100227ValidationInputAccessor::ValidationInputAccessor(const std::string &image_list,
228 std::string images_path,
229 std::unique_ptr<IPreprocessor> preprocessor,
230 bool bgr,
231 unsigned int start,
Anthony Barbier40606df2018-07-23 14:41:59 +0100232 unsigned int end,
233 std::ostream &output_stream)
234 : _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 +0100235{
Anthony Barbier40606df2018-07-23 14:41:59 +0100236 ARM_COMPUTE_EXIT_ON_MSG(start > end, "Invalid validation range!");
Georgios Pinitas7c3b9242018-06-21 19:01:25 +0100237
238 std::ifstream ifs;
239 try
240 {
241 ifs.exceptions(std::ifstream::badbit);
242 ifs.open(image_list, std::ios::in | std::ios::binary);
243
244 // Parse image names
245 unsigned int counter = 0;
246 for(std::string line; !std::getline(ifs, line).fail() && counter <= end; ++counter)
247 {
248 // Add image to process if withing range
249 if(counter >= start)
250 {
251 std::stringstream linestream(line);
252 std::string image_name;
253
254 linestream >> image_name;
255 _images.emplace_back(std::move(image_name));
256 }
257 }
258 }
259 catch(const std::ifstream::failure &e)
260 {
261 ARM_COMPUTE_ERROR("Accessing %s: %s", image_list.c_str(), e.what());
262 }
263}
264
265bool ValidationInputAccessor::access_tensor(arm_compute::ITensor &tensor)
266{
267 bool ret = _offset < _images.size();
268 if(ret)
269 {
270 utils::JPEGLoader jpeg;
271
272 // Open JPEG file
Georgios Pinitas12be7ab2018-07-03 12:06:23 +0100273 std::string image_name = _path + _images[_offset++];
274 jpeg.open(image_name);
Anthony Barbier40606df2018-07-23 14:41:59 +0100275 _output_stream << "[" << _offset << "/" << _images.size() << "] Validating " << image_name << std::endl;
Georgios Pinitas7c3b9242018-06-21 19:01:25 +0100276
277 // Get permutated shape and permutation parameters
278 TensorShape permuted_shape = tensor.info()->tensor_shape();
279 arm_compute::PermutationVector perm;
280 if(tensor.info()->data_layout() != DataLayout::NCHW)
281 {
Anthony Barbier4ead11a2018-08-06 09:25:36 +0100282 std::tie(permuted_shape, perm) = compute_permutation_parameters(tensor.info()->tensor_shape(),
Georgios Pinitas7c3b9242018-06-21 19:01:25 +0100283 tensor.info()->data_layout());
284 }
Anthony Barbier40606df2018-07-23 14:41:59 +0100285 ARM_COMPUTE_EXIT_ON_MSG(jpeg.width() != permuted_shape.x() || jpeg.height() != permuted_shape.y(),
286 "Failed to load image file: dimensions [%d,%d] not correct, expected [%d,%d].",
287 jpeg.width(), jpeg.height(), permuted_shape.x(), permuted_shape.y());
Georgios Pinitas7c3b9242018-06-21 19:01:25 +0100288
Georgios Pinitas12be7ab2018-07-03 12:06:23 +0100289 // Fill the tensor with the JPEG content (BGR)
Georgios Pinitas7c3b9242018-06-21 19:01:25 +0100290 jpeg.fill_planar_tensor(tensor, _bgr);
Georgios Pinitas12be7ab2018-07-03 12:06:23 +0100291
292 // Preprocess tensor
293 if(_preprocessor)
294 {
295 _preprocessor->preprocess(tensor);
296 }
Georgios Pinitas7c3b9242018-06-21 19:01:25 +0100297 }
298
299 return ret;
300}
301
Georgios Pinitas7908de72018-06-27 12:34:20 +0100302ValidationOutputAccessor::ValidationOutputAccessor(const std::string &image_list,
Georgios Pinitas7908de72018-06-27 12:34:20 +0100303 std::ostream &output_stream,
304 unsigned int start,
305 unsigned int end)
Georgios Pinitas12be7ab2018-07-03 12:06:23 +0100306 : _results(), _output_stream(output_stream), _offset(0), _positive_samples_top1(0), _positive_samples_top5(0)
Georgios Pinitas7908de72018-06-27 12:34:20 +0100307{
Anthony Barbier40606df2018-07-23 14:41:59 +0100308 ARM_COMPUTE_EXIT_ON_MSG(start > end, "Invalid validation range!");
Georgios Pinitas7908de72018-06-27 12:34:20 +0100309
310 std::ifstream ifs;
311 try
312 {
313 ifs.exceptions(std::ifstream::badbit);
314 ifs.open(image_list, std::ios::in | std::ios::binary);
315
316 // Parse image correctly classified labels
317 unsigned int counter = 0;
318 for(std::string line; !std::getline(ifs, line).fail() && counter <= end; ++counter)
319 {
320 // Add label if within range
321 if(counter >= start)
322 {
323 std::stringstream linestream(line);
324 std::string image_name;
325 int result;
326
327 linestream >> image_name >> result;
328 _results.emplace_back(result);
329 }
330 }
331 }
332 catch(const std::ifstream::failure &e)
333 {
334 ARM_COMPUTE_ERROR("Accessing %s: %s", image_list.c_str(), e.what());
335 }
336}
337
338void ValidationOutputAccessor::reset()
339{
Georgios Pinitas12be7ab2018-07-03 12:06:23 +0100340 _offset = 0;
341 _positive_samples_top1 = 0;
342 _positive_samples_top5 = 0;
Georgios Pinitas7908de72018-06-27 12:34:20 +0100343}
344
345bool ValidationOutputAccessor::access_tensor(arm_compute::ITensor &tensor)
346{
Georgios Pinitas12be7ab2018-07-03 12:06:23 +0100347 bool ret = _offset < _results.size();
348 if(ret)
Georgios Pinitas7908de72018-06-27 12:34:20 +0100349 {
350 // Get results
351 std::vector<size_t> tensor_results;
352 switch(tensor.info()->data_type())
353 {
354 case DataType::QASYMM8:
355 tensor_results = access_predictions_tensor<uint8_t>(tensor);
356 break;
357 case DataType::F32:
358 tensor_results = access_predictions_tensor<float>(tensor);
359 break;
360 default:
361 ARM_COMPUTE_ERROR("NOT SUPPORTED!");
362 }
363
364 // Check if tensor results are within top-n accuracy
365 size_t correct_label = _results[_offset++];
Georgios Pinitas7908de72018-06-27 12:34:20 +0100366
Georgios Pinitas12be7ab2018-07-03 12:06:23 +0100367 aggregate_sample(tensor_results, _positive_samples_top1, 1, correct_label);
368 aggregate_sample(tensor_results, _positive_samples_top5, 5, correct_label);
Georgios Pinitas7908de72018-06-27 12:34:20 +0100369 }
370
371 // Report top_n accuracy
Georgios Pinitas12be7ab2018-07-03 12:06:23 +0100372 if(_offset >= _results.size())
Georgios Pinitas7908de72018-06-27 12:34:20 +0100373 {
Georgios Pinitas12be7ab2018-07-03 12:06:23 +0100374 report_top_n(1, _results.size(), _positive_samples_top1);
375 report_top_n(5, _results.size(), _positive_samples_top5);
Georgios Pinitas7908de72018-06-27 12:34:20 +0100376 }
377
378 return ret;
379}
380
381template <typename T>
382std::vector<size_t> ValidationOutputAccessor::access_predictions_tensor(arm_compute::ITensor &tensor)
383{
384 // Get the predicted class
385 std::vector<size_t> index;
386
387 const auto output_net = reinterpret_cast<T *>(tensor.buffer() + tensor.info()->offset_first_element_in_bytes());
388 const size_t num_classes = tensor.info()->dimension(0);
389
390 index.resize(num_classes);
391
392 // Sort results
393 std::iota(std::begin(index), std::end(index), static_cast<size_t>(0));
394 std::sort(std::begin(index), std::end(index),
395 [&](size_t a, size_t b)
396 {
397 return output_net[a] > output_net[b];
398 });
399
400 return index;
401}
402
Georgios Pinitas12be7ab2018-07-03 12:06:23 +0100403void ValidationOutputAccessor::aggregate_sample(const std::vector<size_t> &res, size_t &positive_samples, size_t top_n, size_t correct_label)
404{
405 auto is_valid_label = [correct_label](size_t label)
406 {
407 return label == correct_label;
408 };
409
410 if(std::any_of(std::begin(res), std::begin(res) + top_n, is_valid_label))
411 {
412 ++positive_samples;
413 }
414}
415
416void ValidationOutputAccessor::report_top_n(size_t top_n, size_t total_samples, size_t positive_samples)
417{
418 size_t negative_samples = total_samples - positive_samples;
419 float accuracy = positive_samples / static_cast<float>(total_samples);
420
421 _output_stream << "----------Top " << top_n << " accuracy ----------" << std::endl
422 << std::endl;
423 _output_stream << "Positive samples : " << positive_samples << std::endl;
424 _output_stream << "Negative samples : " << negative_samples << std::endl;
425 _output_stream << "Accuracy : " << accuracy << std::endl;
426}
427
Isabella Gottardi7234ed82018-11-27 08:51:10 +0000428DetectionOutputAccessor::DetectionOutputAccessor(const std::string &labels_path, std::vector<TensorShape> &imgs_tensor_shapes, std::ostream &output_stream)
429 : _labels(), _tensor_shapes(std::move(imgs_tensor_shapes)), _output_stream(output_stream)
430{
431 _labels.clear();
432
433 std::ifstream ifs;
434
435 try
436 {
437 ifs.exceptions(std::ifstream::badbit);
438 ifs.open(labels_path, std::ios::in | std::ios::binary);
439
440 for(std::string line; !std::getline(ifs, line).fail();)
441 {
442 _labels.emplace_back(line);
443 }
444 }
445 catch(const std::ifstream::failure &e)
446 {
447 ARM_COMPUTE_ERROR("Accessing %s: %s", labels_path.c_str(), e.what());
448 }
449}
450
451template <typename T>
452void DetectionOutputAccessor::access_predictions_tensor(ITensor &tensor)
453{
454 const size_t num_detection = tensor.info()->valid_region().shape.y();
455 const auto output_prt = reinterpret_cast<T *>(tensor.buffer() + tensor.info()->offset_first_element_in_bytes());
456
457 if(num_detection > 0)
458 {
459 _output_stream << "---------------------- Detections ----------------------" << std::endl
460 << std::endl;
461
462 _output_stream << std::left << std::setprecision(4) << std::setw(8) << "Image | " << std::setw(8) << "Label | " << std::setw(12) << "Confidence | "
463 << "[ xmin, ymin, xmax, ymax ]" << std::endl;
464
465 for(size_t i = 0; i < num_detection; ++i)
466 {
467 auto im = static_cast<const int>(output_prt[i * 7]);
468 _output_stream << std::setw(8) << im << std::setw(8)
469 << _labels[output_prt[i * 7 + 1]] << std::setw(12) << output_prt[i * 7 + 2]
470 << " [" << (output_prt[i * 7 + 3] * _tensor_shapes[im].x())
471 << ", " << (output_prt[i * 7 + 4] * _tensor_shapes[im].y())
472 << ", " << (output_prt[i * 7 + 5] * _tensor_shapes[im].x())
473 << ", " << (output_prt[i * 7 + 6] * _tensor_shapes[im].y())
474 << "]" << std::endl;
475 }
476 }
477 else
478 {
479 _output_stream << "No detection found." << std::endl;
480 }
481}
482
483bool DetectionOutputAccessor::access_tensor(ITensor &tensor)
484{
485 ARM_COMPUTE_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(&tensor, 1, DataType::F32);
486
487 switch(tensor.info()->data_type())
488 {
489 case DataType::F32:
490 access_predictions_tensor<float>(tensor);
491 break;
492 default:
493 ARM_COMPUTE_ERROR("NOT SUPPORTED!");
494 }
495
496 return false;
497}
498
Gian Marco44ec2e72017-10-19 14:13:38 +0100499TopNPredictionsAccessor::TopNPredictionsAccessor(const std::string &labels_path, size_t top_n, std::ostream &output_stream)
500 : _labels(), _output_stream(output_stream), _top_n(top_n)
501{
502 _labels.clear();
503
504 std::ifstream ifs;
505
506 try
507 {
508 ifs.exceptions(std::ifstream::badbit);
509 ifs.open(labels_path, std::ios::in | std::ios::binary);
510
511 for(std::string line; !std::getline(ifs, line).fail();)
512 {
513 _labels.emplace_back(line);
514 }
515 }
516 catch(const std::ifstream::failure &e)
517 {
518 ARM_COMPUTE_ERROR("Accessing %s: %s", labels_path.c_str(), e.what());
519 }
520}
521
Giorgio Arenaa66eaa22017-12-21 19:50:06 +0000522template <typename T>
523void TopNPredictionsAccessor::access_predictions_tensor(ITensor &tensor)
Gian Marco44ec2e72017-10-19 14:13:38 +0100524{
Gian Marco44ec2e72017-10-19 14:13:38 +0100525 // Get the predicted class
Giorgio Arenaa66eaa22017-12-21 19:50:06 +0000526 std::vector<T> classes_prob;
Gian Marco44ec2e72017-10-19 14:13:38 +0100527 std::vector<size_t> index;
528
Giorgio Arenaa66eaa22017-12-21 19:50:06 +0000529 const auto output_net = reinterpret_cast<T *>(tensor.buffer() + tensor.info()->offset_first_element_in_bytes());
Gian Marco44ec2e72017-10-19 14:13:38 +0100530 const size_t num_classes = tensor.info()->dimension(0);
531
532 classes_prob.resize(num_classes);
533 index.resize(num_classes);
534
535 std::copy(output_net, output_net + num_classes, classes_prob.begin());
536
537 // Sort results
538 std::iota(std::begin(index), std::end(index), static_cast<size_t>(0));
539 std::sort(std::begin(index), std::end(index),
540 [&](size_t a, size_t b)
541 {
542 return classes_prob[a] > classes_prob[b];
543 });
544
545 _output_stream << "---------- Top " << _top_n << " predictions ----------" << std::endl
546 << std::endl;
547 for(size_t i = 0; i < _top_n; ++i)
548 {
549 _output_stream << std::fixed << std::setprecision(4)
Giorgio Arenaa66eaa22017-12-21 19:50:06 +0000550 << +classes_prob[index.at(i)]
Gian Marco44ec2e72017-10-19 14:13:38 +0100551 << " - [id = " << index.at(i) << "]"
552 << ", " << _labels[index.at(i)] << std::endl;
553 }
Giorgio Arenaa66eaa22017-12-21 19:50:06 +0000554}
555
556bool TopNPredictionsAccessor::access_tensor(ITensor &tensor)
557{
558 ARM_COMPUTE_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(&tensor, 1, DataType::F32, DataType::QASYMM8);
559 ARM_COMPUTE_ERROR_ON(_labels.size() != tensor.info()->dimension(0));
560
561 switch(tensor.info()->data_type())
562 {
563 case DataType::QASYMM8:
564 access_predictions_tensor<uint8_t>(tensor);
565 break;
566 case DataType::F32:
567 access_predictions_tensor<float>(tensor);
568 break;
569 default:
570 ARM_COMPUTE_ERROR("NOT SUPPORTED!");
571 }
Gian Marco44ec2e72017-10-19 14:13:38 +0100572
573 return false;
574}
575
Michalis Spyrou53b405f2017-09-27 15:55:31 +0100576RandomAccessor::RandomAccessor(PixelValue lower, PixelValue upper, std::random_device::result_type seed)
577 : _lower(lower), _upper(upper), _seed(seed)
578{
579}
580
581template <typename T, typename D>
582void RandomAccessor::fill(ITensor &tensor, D &&distribution)
583{
584 std::mt19937 gen(_seed);
585
hakanardof36ac352018-02-16 10:06:34 +0100586 if(tensor.info()->padding().empty() && (dynamic_cast<SubTensor *>(&tensor) == nullptr))
Michalis Spyrou53b405f2017-09-27 15:55:31 +0100587 {
588 for(size_t offset = 0; offset < tensor.info()->total_size(); offset += tensor.info()->element_size())
589 {
Michele Di Giorgio88731f02018-09-25 16:49:27 +0100590 const auto value = static_cast<T>(distribution(gen));
Michalis Spyrou53b405f2017-09-27 15:55:31 +0100591 *reinterpret_cast<T *>(tensor.buffer() + offset) = value;
592 }
593 }
594 else
595 {
596 // If tensor has padding accessing tensor elements through execution window.
597 Window window;
598 window.use_tensor_dimensions(tensor.info()->tensor_shape());
599
600 execute_window_loop(window, [&](const Coordinates & id)
601 {
Michele Di Giorgio88731f02018-09-25 16:49:27 +0100602 const auto value = static_cast<T>(distribution(gen));
Michalis Spyrou53b405f2017-09-27 15:55:31 +0100603 *reinterpret_cast<T *>(tensor.ptr_to_element(id)) = value;
604 });
605 }
606}
607
608bool RandomAccessor::access_tensor(ITensor &tensor)
609{
610 switch(tensor.info()->data_type())
611 {
John Kesapidesfb68ca12019-01-21 14:13:27 +0000612 case DataType::QASYMM8:
Michalis Spyrou53b405f2017-09-27 15:55:31 +0100613 case DataType::U8:
614 {
615 std::uniform_int_distribution<uint8_t> distribution_u8(_lower.get<uint8_t>(), _upper.get<uint8_t>());
616 fill<uint8_t>(tensor, distribution_u8);
617 break;
618 }
619 case DataType::S8:
Michalis Spyrou53b405f2017-09-27 15:55:31 +0100620 {
621 std::uniform_int_distribution<int8_t> distribution_s8(_lower.get<int8_t>(), _upper.get<int8_t>());
622 fill<int8_t>(tensor, distribution_s8);
623 break;
624 }
625 case DataType::U16:
626 {
627 std::uniform_int_distribution<uint16_t> distribution_u16(_lower.get<uint16_t>(), _upper.get<uint16_t>());
628 fill<uint16_t>(tensor, distribution_u16);
629 break;
630 }
631 case DataType::S16:
Michalis Spyrou53b405f2017-09-27 15:55:31 +0100632 {
633 std::uniform_int_distribution<int16_t> distribution_s16(_lower.get<int16_t>(), _upper.get<int16_t>());
634 fill<int16_t>(tensor, distribution_s16);
635 break;
636 }
637 case DataType::U32:
638 {
639 std::uniform_int_distribution<uint32_t> distribution_u32(_lower.get<uint32_t>(), _upper.get<uint32_t>());
640 fill<uint32_t>(tensor, distribution_u32);
641 break;
642 }
643 case DataType::S32:
644 {
645 std::uniform_int_distribution<int32_t> distribution_s32(_lower.get<int32_t>(), _upper.get<int32_t>());
646 fill<int32_t>(tensor, distribution_s32);
647 break;
648 }
649 case DataType::U64:
650 {
651 std::uniform_int_distribution<uint64_t> distribution_u64(_lower.get<uint64_t>(), _upper.get<uint64_t>());
652 fill<uint64_t>(tensor, distribution_u64);
653 break;
654 }
655 case DataType::S64:
656 {
657 std::uniform_int_distribution<int64_t> distribution_s64(_lower.get<int64_t>(), _upper.get<int64_t>());
658 fill<int64_t>(tensor, distribution_s64);
659 break;
660 }
661 case DataType::F16:
662 {
John Kesapidesfb68ca12019-01-21 14:13:27 +0000663 std::uniform_real_distribution<float> distribution_f16(_lower.get<half>(), _upper.get<half>());
Michele Di Giorgio88731f02018-09-25 16:49:27 +0100664 fill<half>(tensor, distribution_f16);
Michalis Spyrou53b405f2017-09-27 15:55:31 +0100665 break;
666 }
667 case DataType::F32:
668 {
669 std::uniform_real_distribution<float> distribution_f32(_lower.get<float>(), _upper.get<float>());
670 fill<float>(tensor, distribution_f32);
671 break;
672 }
673 case DataType::F64:
674 {
675 std::uniform_real_distribution<double> distribution_f64(_lower.get<double>(), _upper.get<double>());
676 fill<double>(tensor, distribution_f64);
677 break;
678 }
679 default:
680 ARM_COMPUTE_ERROR("NOT SUPPORTED!");
681 }
682 return true;
683}
684
Georgios Pinitascac13b12018-04-27 19:07:19 +0100685NumPyBinLoader::NumPyBinLoader(std::string filename, DataLayout file_layout)
Anthony Barbier8a042112018-08-21 18:16:53 +0100686 : _already_loaded(false), _filename(std::move(filename)), _file_layout(file_layout)
Anthony Barbier2a07e182017-08-04 18:20:27 +0100687{
688}
689
690bool NumPyBinLoader::access_tensor(ITensor &tensor)
691{
Anthony Barbier8a042112018-08-21 18:16:53 +0100692 if(!_already_loaded)
693 {
694 utils::NPYLoader loader;
695 loader.open(_filename, _file_layout);
696 loader.fill_tensor(tensor);
697 }
Anthony Barbier2a07e182017-08-04 18:20:27 +0100698
Anthony Barbier8a042112018-08-21 18:16:53 +0100699 _already_loaded = !_already_loaded;
700 return _already_loaded;
Anthony Barbier87f21cd2017-11-10 16:27:32 +0000701}