blob: b714c551365cf1c8323bc35061f2e4bc9efe69f5 [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>
156void NumPyAccessor::access_numpy_tensor(ITensor &tensor)
157{
Gian Marco Iodicead486e22018-08-07 17:17:06 +0100158 const int num_elements = tensor.info()->tensor_shape().total_size();
Isabella Gottardi88d5b222018-04-06 12:24:55 +0100159 int num_mismatches = utils::compare_tensor<T>(tensor, _npy_tensor);
160 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;
163}
164
165bool NumPyAccessor::access_tensor(ITensor &tensor)
166{
167 ARM_COMPUTE_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(&tensor, 1, DataType::F32);
168 ARM_COMPUTE_ERROR_ON(_npy_tensor.info()->dimension(0) != tensor.info()->dimension(0));
169
170 switch(tensor.info()->data_type())
171 {
172 case DataType::F32:
173 access_numpy_tensor<float>(tensor);
174 break;
175 default:
176 ARM_COMPUTE_ERROR("NOT SUPPORTED!");
177 }
178
179 return false;
180}
181
Georgios Pinitas12be7ab2018-07-03 12:06:23 +0100182ImageAccessor::ImageAccessor(std::string filename, bool bgr, std::unique_ptr<IPreprocessor> preprocessor)
Anthony Barbier8a042112018-08-21 18:16:53 +0100183 : _already_loaded(false), _filename(std::move(filename)), _bgr(bgr), _preprocessor(std::move(preprocessor))
Gian Marco44ec2e72017-10-19 14:13:38 +0100184{
185}
186
Georgios Pinitas12be7ab2018-07-03 12:06:23 +0100187bool ImageAccessor::access_tensor(ITensor &tensor)
Gian Marco44ec2e72017-10-19 14:13:38 +0100188{
Anthony Barbier8a042112018-08-21 18:16:53 +0100189 if(!_already_loaded)
Georgios Pinitascac13b12018-04-27 19:07:19 +0100190 {
Anthony Barbier8a042112018-08-21 18:16:53 +0100191 auto image_loader = utils::ImageLoaderFactory::create(_filename);
192 ARM_COMPUTE_EXIT_ON_MSG(image_loader == nullptr, "Unsupported image type");
Isabella Gottardia4c61882017-11-03 12:11:55 +0000193
Anthony Barbier8a042112018-08-21 18:16:53 +0100194 // Open image file
195 image_loader->open(_filename);
Gian Marco44ec2e72017-10-19 14:13:38 +0100196
Anthony Barbier8a042112018-08-21 18:16:53 +0100197 // Get permutated shape and permutation parameters
198 TensorShape permuted_shape = tensor.info()->tensor_shape();
199 arm_compute::PermutationVector perm;
200 if(tensor.info()->data_layout() != DataLayout::NCHW)
201 {
202 std::tie(permuted_shape, perm) = compute_permutation_parameters(tensor.info()->tensor_shape(), tensor.info()->data_layout());
203 }
204 ARM_COMPUTE_EXIT_ON_MSG(image_loader->width() != permuted_shape.x() || image_loader->height() != permuted_shape.y(),
205 "Failed to load image file: dimensions [%d,%d] not correct, expected [%d,%d].",
206 image_loader->width(), image_loader->height(), permuted_shape.x(), permuted_shape.y());
207
208 // Fill the tensor with the PPM content (BGR)
209 image_loader->fill_planar_tensor(tensor, _bgr);
210
211 // Preprocess tensor
212 if(_preprocessor)
213 {
214 _preprocessor->preprocess(tensor);
215 }
Georgios Pinitas140fdc72018-02-16 11:42:38 +0000216 }
Gian Marco44ec2e72017-10-19 14:13:38 +0100217
Anthony Barbier8a042112018-08-21 18:16:53 +0100218 _already_loaded = !_already_loaded;
219 return _already_loaded;
Gian Marco44ec2e72017-10-19 14:13:38 +0100220}
221
Georgios Pinitas12be7ab2018-07-03 12:06:23 +0100222ValidationInputAccessor::ValidationInputAccessor(const std::string &image_list,
223 std::string images_path,
224 std::unique_ptr<IPreprocessor> preprocessor,
225 bool bgr,
226 unsigned int start,
Anthony Barbier40606df2018-07-23 14:41:59 +0100227 unsigned int end,
228 std::ostream &output_stream)
229 : _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 +0100230{
Anthony Barbier40606df2018-07-23 14:41:59 +0100231 ARM_COMPUTE_EXIT_ON_MSG(start > end, "Invalid validation range!");
Georgios Pinitas7c3b9242018-06-21 19:01:25 +0100232
233 std::ifstream ifs;
234 try
235 {
236 ifs.exceptions(std::ifstream::badbit);
237 ifs.open(image_list, std::ios::in | std::ios::binary);
238
239 // Parse image names
240 unsigned int counter = 0;
241 for(std::string line; !std::getline(ifs, line).fail() && counter <= end; ++counter)
242 {
243 // Add image to process if withing range
244 if(counter >= start)
245 {
246 std::stringstream linestream(line);
247 std::string image_name;
248
249 linestream >> image_name;
250 _images.emplace_back(std::move(image_name));
251 }
252 }
253 }
254 catch(const std::ifstream::failure &e)
255 {
256 ARM_COMPUTE_ERROR("Accessing %s: %s", image_list.c_str(), e.what());
257 }
258}
259
260bool ValidationInputAccessor::access_tensor(arm_compute::ITensor &tensor)
261{
262 bool ret = _offset < _images.size();
263 if(ret)
264 {
265 utils::JPEGLoader jpeg;
266
267 // Open JPEG file
Georgios Pinitas12be7ab2018-07-03 12:06:23 +0100268 std::string image_name = _path + _images[_offset++];
269 jpeg.open(image_name);
Anthony Barbier40606df2018-07-23 14:41:59 +0100270 _output_stream << "[" << _offset << "/" << _images.size() << "] Validating " << image_name << std::endl;
Georgios Pinitas7c3b9242018-06-21 19:01:25 +0100271
272 // Get permutated shape and permutation parameters
273 TensorShape permuted_shape = tensor.info()->tensor_shape();
274 arm_compute::PermutationVector perm;
275 if(tensor.info()->data_layout() != DataLayout::NCHW)
276 {
Anthony Barbier4ead11a2018-08-06 09:25:36 +0100277 std::tie(permuted_shape, perm) = compute_permutation_parameters(tensor.info()->tensor_shape(),
Georgios Pinitas7c3b9242018-06-21 19:01:25 +0100278 tensor.info()->data_layout());
279 }
Anthony Barbier40606df2018-07-23 14:41:59 +0100280 ARM_COMPUTE_EXIT_ON_MSG(jpeg.width() != permuted_shape.x() || jpeg.height() != permuted_shape.y(),
281 "Failed to load image file: dimensions [%d,%d] not correct, expected [%d,%d].",
282 jpeg.width(), jpeg.height(), permuted_shape.x(), permuted_shape.y());
Georgios Pinitas7c3b9242018-06-21 19:01:25 +0100283
Georgios Pinitas12be7ab2018-07-03 12:06:23 +0100284 // Fill the tensor with the JPEG content (BGR)
Georgios Pinitas7c3b9242018-06-21 19:01:25 +0100285 jpeg.fill_planar_tensor(tensor, _bgr);
Georgios Pinitas12be7ab2018-07-03 12:06:23 +0100286
287 // Preprocess tensor
288 if(_preprocessor)
289 {
290 _preprocessor->preprocess(tensor);
291 }
Georgios Pinitas7c3b9242018-06-21 19:01:25 +0100292 }
293
294 return ret;
295}
296
Georgios Pinitas7908de72018-06-27 12:34:20 +0100297ValidationOutputAccessor::ValidationOutputAccessor(const std::string &image_list,
Georgios Pinitas7908de72018-06-27 12:34:20 +0100298 std::ostream &output_stream,
299 unsigned int start,
300 unsigned int end)
Georgios Pinitas12be7ab2018-07-03 12:06:23 +0100301 : _results(), _output_stream(output_stream), _offset(0), _positive_samples_top1(0), _positive_samples_top5(0)
Georgios Pinitas7908de72018-06-27 12:34:20 +0100302{
Anthony Barbier40606df2018-07-23 14:41:59 +0100303 ARM_COMPUTE_EXIT_ON_MSG(start > end, "Invalid validation range!");
Georgios Pinitas7908de72018-06-27 12:34:20 +0100304
305 std::ifstream ifs;
306 try
307 {
308 ifs.exceptions(std::ifstream::badbit);
309 ifs.open(image_list, std::ios::in | std::ios::binary);
310
311 // Parse image correctly classified labels
312 unsigned int counter = 0;
313 for(std::string line; !std::getline(ifs, line).fail() && counter <= end; ++counter)
314 {
315 // Add label if within range
316 if(counter >= start)
317 {
318 std::stringstream linestream(line);
319 std::string image_name;
320 int result;
321
322 linestream >> image_name >> result;
323 _results.emplace_back(result);
324 }
325 }
326 }
327 catch(const std::ifstream::failure &e)
328 {
329 ARM_COMPUTE_ERROR("Accessing %s: %s", image_list.c_str(), e.what());
330 }
331}
332
333void ValidationOutputAccessor::reset()
334{
Georgios Pinitas12be7ab2018-07-03 12:06:23 +0100335 _offset = 0;
336 _positive_samples_top1 = 0;
337 _positive_samples_top5 = 0;
Georgios Pinitas7908de72018-06-27 12:34:20 +0100338}
339
340bool ValidationOutputAccessor::access_tensor(arm_compute::ITensor &tensor)
341{
Georgios Pinitas12be7ab2018-07-03 12:06:23 +0100342 bool ret = _offset < _results.size();
343 if(ret)
Georgios Pinitas7908de72018-06-27 12:34:20 +0100344 {
345 // Get results
346 std::vector<size_t> tensor_results;
347 switch(tensor.info()->data_type())
348 {
349 case DataType::QASYMM8:
350 tensor_results = access_predictions_tensor<uint8_t>(tensor);
351 break;
352 case DataType::F32:
353 tensor_results = access_predictions_tensor<float>(tensor);
354 break;
355 default:
356 ARM_COMPUTE_ERROR("NOT SUPPORTED!");
357 }
358
359 // Check if tensor results are within top-n accuracy
360 size_t correct_label = _results[_offset++];
Georgios Pinitas7908de72018-06-27 12:34:20 +0100361
Georgios Pinitas12be7ab2018-07-03 12:06:23 +0100362 aggregate_sample(tensor_results, _positive_samples_top1, 1, correct_label);
363 aggregate_sample(tensor_results, _positive_samples_top5, 5, correct_label);
Georgios Pinitas7908de72018-06-27 12:34:20 +0100364 }
365
366 // Report top_n accuracy
Georgios Pinitas12be7ab2018-07-03 12:06:23 +0100367 if(_offset >= _results.size())
Georgios Pinitas7908de72018-06-27 12:34:20 +0100368 {
Georgios Pinitas12be7ab2018-07-03 12:06:23 +0100369 report_top_n(1, _results.size(), _positive_samples_top1);
370 report_top_n(5, _results.size(), _positive_samples_top5);
Georgios Pinitas7908de72018-06-27 12:34:20 +0100371 }
372
373 return ret;
374}
375
376template <typename T>
377std::vector<size_t> ValidationOutputAccessor::access_predictions_tensor(arm_compute::ITensor &tensor)
378{
379 // Get the predicted class
380 std::vector<size_t> index;
381
382 const auto output_net = reinterpret_cast<T *>(tensor.buffer() + tensor.info()->offset_first_element_in_bytes());
383 const size_t num_classes = tensor.info()->dimension(0);
384
385 index.resize(num_classes);
386
387 // Sort results
388 std::iota(std::begin(index), std::end(index), static_cast<size_t>(0));
389 std::sort(std::begin(index), std::end(index),
390 [&](size_t a, size_t b)
391 {
392 return output_net[a] > output_net[b];
393 });
394
395 return index;
396}
397
Georgios Pinitas12be7ab2018-07-03 12:06:23 +0100398void ValidationOutputAccessor::aggregate_sample(const std::vector<size_t> &res, size_t &positive_samples, size_t top_n, size_t correct_label)
399{
400 auto is_valid_label = [correct_label](size_t label)
401 {
402 return label == correct_label;
403 };
404
405 if(std::any_of(std::begin(res), std::begin(res) + top_n, is_valid_label))
406 {
407 ++positive_samples;
408 }
409}
410
411void ValidationOutputAccessor::report_top_n(size_t top_n, size_t total_samples, size_t positive_samples)
412{
413 size_t negative_samples = total_samples - positive_samples;
414 float accuracy = positive_samples / static_cast<float>(total_samples);
415
416 _output_stream << "----------Top " << top_n << " accuracy ----------" << std::endl
417 << std::endl;
418 _output_stream << "Positive samples : " << positive_samples << std::endl;
419 _output_stream << "Negative samples : " << negative_samples << std::endl;
420 _output_stream << "Accuracy : " << accuracy << std::endl;
421}
422
Isabella Gottardi7234ed82018-11-27 08:51:10 +0000423DetectionOutputAccessor::DetectionOutputAccessor(const std::string &labels_path, std::vector<TensorShape> &imgs_tensor_shapes, std::ostream &output_stream)
424 : _labels(), _tensor_shapes(std::move(imgs_tensor_shapes)), _output_stream(output_stream)
425{
426 _labels.clear();
427
428 std::ifstream ifs;
429
430 try
431 {
432 ifs.exceptions(std::ifstream::badbit);
433 ifs.open(labels_path, std::ios::in | std::ios::binary);
434
435 for(std::string line; !std::getline(ifs, line).fail();)
436 {
437 _labels.emplace_back(line);
438 }
439 }
440 catch(const std::ifstream::failure &e)
441 {
442 ARM_COMPUTE_ERROR("Accessing %s: %s", labels_path.c_str(), e.what());
443 }
444}
445
446template <typename T>
447void DetectionOutputAccessor::access_predictions_tensor(ITensor &tensor)
448{
449 const size_t num_detection = tensor.info()->valid_region().shape.y();
450 const auto output_prt = reinterpret_cast<T *>(tensor.buffer() + tensor.info()->offset_first_element_in_bytes());
451
452 if(num_detection > 0)
453 {
454 _output_stream << "---------------------- Detections ----------------------" << std::endl
455 << std::endl;
456
457 _output_stream << std::left << std::setprecision(4) << std::setw(8) << "Image | " << std::setw(8) << "Label | " << std::setw(12) << "Confidence | "
458 << "[ xmin, ymin, xmax, ymax ]" << std::endl;
459
460 for(size_t i = 0; i < num_detection; ++i)
461 {
462 auto im = static_cast<const int>(output_prt[i * 7]);
463 _output_stream << std::setw(8) << im << std::setw(8)
464 << _labels[output_prt[i * 7 + 1]] << std::setw(12) << output_prt[i * 7 + 2]
465 << " [" << (output_prt[i * 7 + 3] * _tensor_shapes[im].x())
466 << ", " << (output_prt[i * 7 + 4] * _tensor_shapes[im].y())
467 << ", " << (output_prt[i * 7 + 5] * _tensor_shapes[im].x())
468 << ", " << (output_prt[i * 7 + 6] * _tensor_shapes[im].y())
469 << "]" << std::endl;
470 }
471 }
472 else
473 {
474 _output_stream << "No detection found." << std::endl;
475 }
476}
477
478bool DetectionOutputAccessor::access_tensor(ITensor &tensor)
479{
480 ARM_COMPUTE_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(&tensor, 1, DataType::F32);
481
482 switch(tensor.info()->data_type())
483 {
484 case DataType::F32:
485 access_predictions_tensor<float>(tensor);
486 break;
487 default:
488 ARM_COMPUTE_ERROR("NOT SUPPORTED!");
489 }
490
491 return false;
492}
493
Gian Marco44ec2e72017-10-19 14:13:38 +0100494TopNPredictionsAccessor::TopNPredictionsAccessor(const std::string &labels_path, size_t top_n, std::ostream &output_stream)
495 : _labels(), _output_stream(output_stream), _top_n(top_n)
496{
497 _labels.clear();
498
499 std::ifstream ifs;
500
501 try
502 {
503 ifs.exceptions(std::ifstream::badbit);
504 ifs.open(labels_path, std::ios::in | std::ios::binary);
505
506 for(std::string line; !std::getline(ifs, line).fail();)
507 {
508 _labels.emplace_back(line);
509 }
510 }
511 catch(const std::ifstream::failure &e)
512 {
513 ARM_COMPUTE_ERROR("Accessing %s: %s", labels_path.c_str(), e.what());
514 }
515}
516
Giorgio Arenaa66eaa22017-12-21 19:50:06 +0000517template <typename T>
518void TopNPredictionsAccessor::access_predictions_tensor(ITensor &tensor)
Gian Marco44ec2e72017-10-19 14:13:38 +0100519{
Gian Marco44ec2e72017-10-19 14:13:38 +0100520 // Get the predicted class
Giorgio Arenaa66eaa22017-12-21 19:50:06 +0000521 std::vector<T> classes_prob;
Gian Marco44ec2e72017-10-19 14:13:38 +0100522 std::vector<size_t> index;
523
Giorgio Arenaa66eaa22017-12-21 19:50:06 +0000524 const auto output_net = reinterpret_cast<T *>(tensor.buffer() + tensor.info()->offset_first_element_in_bytes());
Gian Marco44ec2e72017-10-19 14:13:38 +0100525 const size_t num_classes = tensor.info()->dimension(0);
526
527 classes_prob.resize(num_classes);
528 index.resize(num_classes);
529
530 std::copy(output_net, output_net + num_classes, classes_prob.begin());
531
532 // Sort results
533 std::iota(std::begin(index), std::end(index), static_cast<size_t>(0));
534 std::sort(std::begin(index), std::end(index),
535 [&](size_t a, size_t b)
536 {
537 return classes_prob[a] > classes_prob[b];
538 });
539
540 _output_stream << "---------- Top " << _top_n << " predictions ----------" << std::endl
541 << std::endl;
542 for(size_t i = 0; i < _top_n; ++i)
543 {
544 _output_stream << std::fixed << std::setprecision(4)
Giorgio Arenaa66eaa22017-12-21 19:50:06 +0000545 << +classes_prob[index.at(i)]
Gian Marco44ec2e72017-10-19 14:13:38 +0100546 << " - [id = " << index.at(i) << "]"
547 << ", " << _labels[index.at(i)] << std::endl;
548 }
Giorgio Arenaa66eaa22017-12-21 19:50:06 +0000549}
550
551bool TopNPredictionsAccessor::access_tensor(ITensor &tensor)
552{
553 ARM_COMPUTE_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(&tensor, 1, DataType::F32, DataType::QASYMM8);
554 ARM_COMPUTE_ERROR_ON(_labels.size() != tensor.info()->dimension(0));
555
556 switch(tensor.info()->data_type())
557 {
558 case DataType::QASYMM8:
559 access_predictions_tensor<uint8_t>(tensor);
560 break;
561 case DataType::F32:
562 access_predictions_tensor<float>(tensor);
563 break;
564 default:
565 ARM_COMPUTE_ERROR("NOT SUPPORTED!");
566 }
Gian Marco44ec2e72017-10-19 14:13:38 +0100567
568 return false;
569}
570
Michalis Spyrou53b405f2017-09-27 15:55:31 +0100571RandomAccessor::RandomAccessor(PixelValue lower, PixelValue upper, std::random_device::result_type seed)
572 : _lower(lower), _upper(upper), _seed(seed)
573{
574}
575
576template <typename T, typename D>
577void RandomAccessor::fill(ITensor &tensor, D &&distribution)
578{
579 std::mt19937 gen(_seed);
580
hakanardof36ac352018-02-16 10:06:34 +0100581 if(tensor.info()->padding().empty() && (dynamic_cast<SubTensor *>(&tensor) == nullptr))
Michalis Spyrou53b405f2017-09-27 15:55:31 +0100582 {
583 for(size_t offset = 0; offset < tensor.info()->total_size(); offset += tensor.info()->element_size())
584 {
Michele Di Giorgio88731f02018-09-25 16:49:27 +0100585 const auto value = static_cast<T>(distribution(gen));
Michalis Spyrou53b405f2017-09-27 15:55:31 +0100586 *reinterpret_cast<T *>(tensor.buffer() + offset) = value;
587 }
588 }
589 else
590 {
591 // If tensor has padding accessing tensor elements through execution window.
592 Window window;
593 window.use_tensor_dimensions(tensor.info()->tensor_shape());
594
595 execute_window_loop(window, [&](const Coordinates & id)
596 {
Michele Di Giorgio88731f02018-09-25 16:49:27 +0100597 const auto value = static_cast<T>(distribution(gen));
Michalis Spyrou53b405f2017-09-27 15:55:31 +0100598 *reinterpret_cast<T *>(tensor.ptr_to_element(id)) = value;
599 });
600 }
601}
602
603bool RandomAccessor::access_tensor(ITensor &tensor)
604{
605 switch(tensor.info()->data_type())
606 {
John Kesapidesfb68ca12019-01-21 14:13:27 +0000607 case DataType::QASYMM8:
Michalis Spyrou53b405f2017-09-27 15:55:31 +0100608 case DataType::U8:
609 {
610 std::uniform_int_distribution<uint8_t> distribution_u8(_lower.get<uint8_t>(), _upper.get<uint8_t>());
611 fill<uint8_t>(tensor, distribution_u8);
612 break;
613 }
614 case DataType::S8:
Michalis Spyrou53b405f2017-09-27 15:55:31 +0100615 {
616 std::uniform_int_distribution<int8_t> distribution_s8(_lower.get<int8_t>(), _upper.get<int8_t>());
617 fill<int8_t>(tensor, distribution_s8);
618 break;
619 }
620 case DataType::U16:
621 {
622 std::uniform_int_distribution<uint16_t> distribution_u16(_lower.get<uint16_t>(), _upper.get<uint16_t>());
623 fill<uint16_t>(tensor, distribution_u16);
624 break;
625 }
626 case DataType::S16:
Michalis Spyrou53b405f2017-09-27 15:55:31 +0100627 {
628 std::uniform_int_distribution<int16_t> distribution_s16(_lower.get<int16_t>(), _upper.get<int16_t>());
629 fill<int16_t>(tensor, distribution_s16);
630 break;
631 }
632 case DataType::U32:
633 {
634 std::uniform_int_distribution<uint32_t> distribution_u32(_lower.get<uint32_t>(), _upper.get<uint32_t>());
635 fill<uint32_t>(tensor, distribution_u32);
636 break;
637 }
638 case DataType::S32:
639 {
640 std::uniform_int_distribution<int32_t> distribution_s32(_lower.get<int32_t>(), _upper.get<int32_t>());
641 fill<int32_t>(tensor, distribution_s32);
642 break;
643 }
644 case DataType::U64:
645 {
646 std::uniform_int_distribution<uint64_t> distribution_u64(_lower.get<uint64_t>(), _upper.get<uint64_t>());
647 fill<uint64_t>(tensor, distribution_u64);
648 break;
649 }
650 case DataType::S64:
651 {
652 std::uniform_int_distribution<int64_t> distribution_s64(_lower.get<int64_t>(), _upper.get<int64_t>());
653 fill<int64_t>(tensor, distribution_s64);
654 break;
655 }
656 case DataType::F16:
657 {
John Kesapidesfb68ca12019-01-21 14:13:27 +0000658 std::uniform_real_distribution<float> distribution_f16(_lower.get<half>(), _upper.get<half>());
Michele Di Giorgio88731f02018-09-25 16:49:27 +0100659 fill<half>(tensor, distribution_f16);
Michalis Spyrou53b405f2017-09-27 15:55:31 +0100660 break;
661 }
662 case DataType::F32:
663 {
664 std::uniform_real_distribution<float> distribution_f32(_lower.get<float>(), _upper.get<float>());
665 fill<float>(tensor, distribution_f32);
666 break;
667 }
668 case DataType::F64:
669 {
670 std::uniform_real_distribution<double> distribution_f64(_lower.get<double>(), _upper.get<double>());
671 fill<double>(tensor, distribution_f64);
672 break;
673 }
674 default:
675 ARM_COMPUTE_ERROR("NOT SUPPORTED!");
676 }
677 return true;
678}
679
Georgios Pinitascac13b12018-04-27 19:07:19 +0100680NumPyBinLoader::NumPyBinLoader(std::string filename, DataLayout file_layout)
Anthony Barbier8a042112018-08-21 18:16:53 +0100681 : _already_loaded(false), _filename(std::move(filename)), _file_layout(file_layout)
Anthony Barbier2a07e182017-08-04 18:20:27 +0100682{
683}
684
685bool NumPyBinLoader::access_tensor(ITensor &tensor)
686{
Anthony Barbier8a042112018-08-21 18:16:53 +0100687 if(!_already_loaded)
688 {
689 utils::NPYLoader loader;
690 loader.open(_filename, _file_layout);
691 loader.fill_tensor(tensor);
692 }
Anthony Barbier2a07e182017-08-04 18:20:27 +0100693
Anthony Barbier8a042112018-08-21 18:16:53 +0100694 _already_loaded = !_already_loaded;
695 return _already_loaded;
Anthony Barbier87f21cd2017-11-10 16:27:32 +0000696}