blob: 6a7cbe08f835ced16a48cb3edb1c379ec3973ad7 [file] [log] [blame]
alexander3c798932021-03-26 21:42:19 +00001/*
2 * Copyright (c) 2021 Arm Limited. All rights reserved.
3 * 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 "hal.h" /* Brings in platform definitions */
18#include "InputFiles.hpp" /* For input data */
19#include "AdModel.hpp" /* Model class for running inference */
20#include "UseCaseCommonUtils.hpp" /* Utils functions */
21#include "UseCaseHandler.hpp" /* Handlers for different user options */
22
23enum opcodes
24{
25 MENU_OPT_RUN_INF_NEXT = 1, /* Run on next vector */
26 MENU_OPT_RUN_INF_CHOSEN, /* Run on a user provided vector index */
27 MENU_OPT_RUN_INF_ALL, /* Run inference on all */
28 MENU_OPT_SHOW_MODEL_INFO, /* Show model info */
29 MENU_OPT_LIST_AUDIO_CLIPS /* List the current baked audio signals */
30};
31
32static void DisplayMenu()
33{
34 printf("\n\nUser input required\n");
35 printf("Enter option number from:\n\n");
36 printf(" %u. Classify next audio signal\n", MENU_OPT_RUN_INF_NEXT);
37 printf(" %u. Classify audio signal at chosen index\n", MENU_OPT_RUN_INF_CHOSEN);
38 printf(" %u. Run classification on all audio signals\n", MENU_OPT_RUN_INF_ALL);
39 printf(" %u. Show NN model info\n", MENU_OPT_SHOW_MODEL_INFO);
40 printf(" %u. List audio signals\n\n", MENU_OPT_LIST_AUDIO_CLIPS);
41 printf(" Choice: ");
42}
43
44
45void main_loop(hal_platform& platform)
46{
47 arm::app::AdModel model; /* Model wrapper object. */
48
49 /* Load the model. */
50 if (!model.Init())
51 {
52 printf_err("failed to initialise model\n");
53 return;
54 }
55
56 /* Instantiate application context. */
57 arm::app::ApplicationContext caseContext;
58
Isabella Gottardi8df12f32021-04-07 17:15:31 +010059 arm::app::Profiler profiler{&platform, "ad"};
60 caseContext.Set<arm::app::Profiler&>("profiler", profiler);
alexander3c798932021-03-26 21:42:19 +000061 caseContext.Set<hal_platform&>("platform", platform);
62 caseContext.Set<arm::app::Model&>("model", model);
63 caseContext.Set<uint32_t>("clipIndex", 0);
64 caseContext.Set<int>("frameLength", g_FrameLength);
65 caseContext.Set<int>("frameStride", g_FrameStride);
66 caseContext.Set<float>("scoreThreshold", g_ScoreThreshold);
67 caseContext.Set<float>("trainingMean", g_TrainingMean);
68
69 /* Main program loop. */
70 bool executionSuccessful = true;
71 constexpr bool bUseMenu = NUMBER_OF_FILES > 1 ? true : false;
72
73 /* Loop. */
74 do {
75 int menuOption = MENU_OPT_RUN_INF_NEXT;
76 if (bUseMenu) {
77 DisplayMenu();
78 menuOption = arm::app::ReadUserInputAsInt(platform);
79 printf("\n");
80 }
81 switch (menuOption) {
82 case MENU_OPT_RUN_INF_NEXT:
83 executionSuccessful = ClassifyVibrationHandler(
84 caseContext,
85 caseContext.Get<uint32_t>("clipIndex"),
86 false);
87 break;
88 case MENU_OPT_RUN_INF_CHOSEN: {
89 printf(" Enter the data index [0, %d]: ",
90 NUMBER_OF_FILES-1);
91 auto audioIndex = static_cast<uint32_t>(
92 arm::app::ReadUserInputAsInt(platform));
93 executionSuccessful = ClassifyVibrationHandler(caseContext,
94 audioIndex,
95 false);
96 break;
97 }
98 case MENU_OPT_RUN_INF_ALL:
99 executionSuccessful = ClassifyVibrationHandler(
100 caseContext,
101 caseContext.Get<uint32_t>("clipIndex"),
102 true);
103 break;
104 case MENU_OPT_SHOW_MODEL_INFO:
105 executionSuccessful = model.ShowModelInfoHandler();
106 break;
107 case MENU_OPT_LIST_AUDIO_CLIPS:
108 executionSuccessful = ListFilesHandler(caseContext);
109 break;
110 default:
111 printf("Incorrect choice, try again.");
112 break;
113 }
114 } while (executionSuccessful && bUseMenu);
115 info("Main loop terminated.\n");
116}