blob: 8a335f715f57b88108a93da34e5c1248f8992ef5 [file] [log] [blame]
alexander3c798932021-03-26 21:42:19 +00001/*
Richard Burtonf32a86a2022-11-15 11:46:11 +00002 * SPDX-FileCopyrightText: Copyright 2021-2022 Arm Limited and/or its affiliates <open-source-office@arm.com>
alexander3c798932021-03-26 21:42:19 +00003 * SPDX-License-Identifier: Apache-2.0
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 */
17#include "Classifier.hpp"
18
alexander3c798932021-03-26 21:42:19 +000019#include "TensorFlowLiteMicro.hpp"
alexander31ae9f02022-02-10 16:15:54 +000020#include "PlatformMath.hpp"
21#include "log_macros.h"
alexander3c798932021-03-26 21:42:19 +000022
23#include <vector>
24#include <string>
25#include <set>
26#include <cstdint>
alexander31ae9f02022-02-10 16:15:54 +000027#include <cinttypes>
28
alexander3c798932021-03-26 21:42:19 +000029
30namespace arm {
31namespace app {
32
Kshitij Sisodia76a15802021-12-24 11:05:11 +000033 void Classifier::SetVectorResults(std::set<std::pair<float, uint32_t>>& topNSet,
Richard Burtonec5e99b2022-10-05 11:00:37 +010034 std::vector<ClassificationResult>& vecResults,
35 const std::vector <std::string>& labels)
Kshitij Sisodia76a15802021-12-24 11:05:11 +000036 {
alexanderc350cdc2021-04-29 20:36:09 +010037 /* Reset the iterator to the largest element - use reverse iterator. */
alexanderc350cdc2021-04-29 20:36:09 +010038
alexanderc350cdc2021-04-29 20:36:09 +010039 auto topNIter = topNSet.rbegin();
40 for (size_t i = 0; i < vecResults.size() && topNIter != topNSet.rend(); ++i, ++topNIter) {
41 vecResults[i].m_normalisedVal = topNIter->first;
42 vecResults[i].m_label = labels[topNIter->second];
43 vecResults[i].m_labelIdx = topNIter->second;
44 }
alexanderc350cdc2021-04-29 20:36:09 +010045 }
46
Kshitij Sisodia76a15802021-12-24 11:05:11 +000047 bool Classifier::GetTopNResults(const std::vector<float>& tensor,
Richard Burtonec5e99b2022-10-05 11:00:37 +010048 std::vector<ClassificationResult>& vecResults,
49 uint32_t topNCount, const std::vector <std::string>& labels)
alexander3c798932021-03-26 21:42:19 +000050 {
Kshitij Sisodia76a15802021-12-24 11:05:11 +000051 std::set<std::pair<float , uint32_t>> sortedSet;
alexander3c798932021-03-26 21:42:19 +000052
53 /* NOTE: inputVec's size verification against labels should be
54 * checked by the calling/public function. */
alexander3c798932021-03-26 21:42:19 +000055
56 /* Set initial elements. */
57 for (uint32_t i = 0; i < topNCount; ++i) {
Kshitij Sisodia76a15802021-12-24 11:05:11 +000058 sortedSet.insert({tensor[i], i});
alexander3c798932021-03-26 21:42:19 +000059 }
60
61 /* Initialise iterator. */
62 auto setFwdIter = sortedSet.begin();
63
64 /* Scan through the rest of elements with compare operations. */
65 for (uint32_t i = topNCount; i < labels.size(); ++i) {
Kshitij Sisodia76a15802021-12-24 11:05:11 +000066 if (setFwdIter->first < tensor[i]) {
alexander3c798932021-03-26 21:42:19 +000067 sortedSet.erase(*setFwdIter);
Kshitij Sisodia76a15802021-12-24 11:05:11 +000068 sortedSet.insert({tensor[i], i});
alexander3c798932021-03-26 21:42:19 +000069 setFwdIter = sortedSet.begin();
70 }
71 }
72
73 /* Final results' container. */
74 vecResults = std::vector<ClassificationResult>(topNCount);
Kshitij Sisodia76a15802021-12-24 11:05:11 +000075 SetVectorResults(sortedSet, vecResults, labels);
alexander3c798932021-03-26 21:42:19 +000076
77 return true;
78 }
79
Richard Burtonec5e99b2022-10-05 11:00:37 +010080 bool Classifier::GetClassificationResults(TfLiteTensor* outputTensor,
81 std::vector<ClassificationResult>& vecResults, const std::vector <std::string>& labels,
82 uint32_t topNCount, bool useSoftmax)
alexander3c798932021-03-26 21:42:19 +000083 {
84 if (outputTensor == nullptr) {
85 printf_err("Output vector is null pointer.\n");
86 return false;
87 }
88
89 uint32_t totalOutputSize = 1;
Kshitij Sisodia76a15802021-12-24 11:05:11 +000090 for (int inputDim = 0; inputDim < outputTensor->dims->size; inputDim++) {
alexander3c798932021-03-26 21:42:19 +000091 totalOutputSize *= outputTensor->dims->data[inputDim];
92 }
93
94 /* Sanity checks. */
95 if (totalOutputSize < topNCount) {
Kshitij Sisodiaf9c19ea2021-05-07 16:08:14 +010096 printf_err("Output vector is smaller than %" PRIu32 "\n", topNCount);
alexander3c798932021-03-26 21:42:19 +000097 return false;
98 } else if (totalOutputSize != labels.size()) {
99 printf_err("Output size doesn't match the labels' size\n");
100 return false;
alexanderc350cdc2021-04-29 20:36:09 +0100101 } else if (topNCount == 0) {
102 printf_err("Top N results cannot be zero\n");
103 return false;
alexander3c798932021-03-26 21:42:19 +0000104 }
105
106 bool resultState;
107 vecResults.clear();
108
Kshitij Sisodia76a15802021-12-24 11:05:11 +0000109 /* De-Quantize Output Tensor */
110 QuantParams quantParams = GetTensorQuantParams(outputTensor);
111
112 /* Floating point tensor data to be populated
113 * NOTE: The assumption here is that the output tensor size isn't too
114 * big and therefore, there's neglibible impact on heap usage. */
115 std::vector<float> tensorData(totalOutputSize);
116
117 /* Populate the floating point buffer */
alexander3c798932021-03-26 21:42:19 +0000118 switch (outputTensor->type) {
Kshitij Sisodia76a15802021-12-24 11:05:11 +0000119 case kTfLiteUInt8: {
120 uint8_t *tensor_buffer = tflite::GetTensorData<uint8_t>(outputTensor);
121 for (size_t i = 0; i < totalOutputSize; ++i) {
122 tensorData[i] = quantParams.scale *
123 (static_cast<float>(tensor_buffer[i]) - quantParams.offset);
124 }
alexander3c798932021-03-26 21:42:19 +0000125 break;
Kshitij Sisodia76a15802021-12-24 11:05:11 +0000126 }
127 case kTfLiteInt8: {
128 int8_t *tensor_buffer = tflite::GetTensorData<int8_t>(outputTensor);
129 for (size_t i = 0; i < totalOutputSize; ++i) {
130 tensorData[i] = quantParams.scale *
131 (static_cast<float>(tensor_buffer[i]) - quantParams.offset);
132 }
alexander3c798932021-03-26 21:42:19 +0000133 break;
Kshitij Sisodia76a15802021-12-24 11:05:11 +0000134 }
135 case kTfLiteFloat32: {
136 float *tensor_buffer = tflite::GetTensorData<float>(outputTensor);
137 for (size_t i = 0; i < totalOutputSize; ++i) {
138 tensorData[i] = tensor_buffer[i];
139 }
alexander3c798932021-03-26 21:42:19 +0000140 break;
Kshitij Sisodia76a15802021-12-24 11:05:11 +0000141 }
alexander3c798932021-03-26 21:42:19 +0000142 default:
Kshitij Sisodia76a15802021-12-24 11:05:11 +0000143 printf_err("Tensor type %s not supported by classifier\n",
144 TfLiteTypeGetName(outputTensor->type));
alexander3c798932021-03-26 21:42:19 +0000145 return false;
146 }
147
Kshitij Sisodia76a15802021-12-24 11:05:11 +0000148 if (useSoftmax) {
149 math::MathUtils::SoftmaxF32(tensorData);
150 }
151
152 /* Get the top N results. */
153 resultState = GetTopNResults(tensorData, vecResults, topNCount, labels);
154
alexander3c798932021-03-26 21:42:19 +0000155 if (!resultState) {
alexanderc350cdc2021-04-29 20:36:09 +0100156 printf_err("Failed to get top N results set\n");
alexander3c798932021-03-26 21:42:19 +0000157 return false;
158 }
159
160 return true;
161 }
alexander3c798932021-03-26 21:42:19 +0000162} /* namespace app */
163} /* namespace arm */