blob: 21fc80d3f1a87e427e16983611fa5d77c84f6a98 [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
alexander3c798932021-03-26 21:42:19 +000018USER_OPTION(${use_case}_FILE_PATH "Directory with custom WAV input files, or path to a single WAV file, to use in the evaluation application."
19 ${CMAKE_CURRENT_SOURCE_DIR}/resources/${use_case}/samples/
Isabella Gottardi2181d0a2021-04-07 09:27:38 +010020 PATH_OR_FILE)
alexander3c798932021-03-26 21:42:19 +000021
22USER_OPTION(${use_case}_LABELS_TXT_FILE "Labels' txt file for the chosen model."
23 ${CMAKE_CURRENT_SOURCE_DIR}/resources/${use_case}/labels/labels_wav2letter.txt
24 FILEPATH)
25
26USER_OPTION(${use_case}_AUDIO_RATE "Specify the target sampling rate. Default is 16000."
27 16000
28 STRING)
29
30USER_OPTION(${use_case}_AUDIO_MONO "Specify if the audio needs to be converted to mono. Default is ON."
31 ON
32 BOOL)
33
34USER_OPTION(${use_case}_AUDIO_OFFSET "Specify the offset to start reading after this time (in seconds). Default is 0."
35 0
36 STRING)
37
38USER_OPTION(${use_case}_AUDIO_DURATION "Specify the audio duration to load (in seconds). If set to 0 the entire audio will be processed."
39 0
40 STRING)
41
42USER_OPTION(${use_case}_AUDIO_RES_TYPE "Specify re-sampling algorithm to use. By default is 'kaiser_best'."
43 kaiser_best
44 STRING)
45
46USER_OPTION(${use_case}_AUDIO_MIN_SAMPLES "Specify the minimum number of samples to use. By default is 16000, if the audio is shorter will be automatically padded."
47 16000
48 STRING)
49
50USER_OPTION(${use_case}_MODEL_SCORE_THRESHOLD "Specify the score threshold [0.0, 1.0) that must be applied to the inference results for a label to be deemed valid."
51 0.5
52 STRING)
53
54# Generate input files
55generate_audio_code(${${use_case}_FILE_PATH} ${SRC_GEN_DIR} ${INC_GEN_DIR}
56 ${${use_case}_AUDIO_RATE}
57 ${${use_case}_AUDIO_MONO}
58 ${${use_case}_AUDIO_OFFSET}
59 ${${use_case}_AUDIO_DURATION}
60 ${${use_case}_AUDIO_RES_TYPE}
61 ${${use_case}_AUDIO_MIN_SAMPLES})
62
63# Generate labels file
64set(${use_case}_LABELS_CPP_FILE Labels)
65generate_labels_code(
Kshitij Sisodiae12ac832021-05-20 11:18:53 +010066 INPUT "${${use_case}_LABELS_TXT_FILE}"
alexander3c798932021-03-26 21:42:19 +000067 DESTINATION_SRC ${SRC_GEN_DIR}
68 DESTINATION_HDR ${INC_GEN_DIR}
69 OUTPUT_FILENAME "${${use_case}_LABELS_CPP_FILE}"
70)
71
72
73USER_OPTION(${use_case}_ACTIVATION_BUF_SZ "Activation buffer size for the chosen model"
George Gekovbe54c622021-07-06 12:02:26 +010074 0x00400000
alexander3c798932021-03-26 21:42:19 +000075 STRING)
76
Cisco Cervelleraf085fa52021-08-02 09:32:07 +010077if (ETHOS_U_NPU_ENABLED)
Kshitij Sisodiae12ac832021-05-20 11:18:53 +010078 set(DEFAULT_MODEL_PATH ${DEFAULT_MODEL_DIR}/wav2letter_pruned_int8_vela_H128.tflite)
alexander3c798932021-03-26 21:42:19 +000079else()
Kshitij Sisodiae12ac832021-05-20 11:18:53 +010080 set(DEFAULT_MODEL_PATH ${DEFAULT_MODEL_DIR}/wav2letter_pruned_int8.tflite)
alexander3c798932021-03-26 21:42:19 +000081endif()
82
83set(EXTRA_MODEL_CODE
84 "/* Model parameters for ${use_case} */"
85 "extern const int g_FrameLength = 512"
86 "extern const int g_FrameStride = 160"
87 "extern const int g_ctxLen = 98"
88 "extern const float g_ScoreThreshold = ${${use_case}_MODEL_SCORE_THRESHOLD}"
89 )
90
91USER_OPTION(${use_case}_MODEL_TFLITE_PATH "NN models file to be used in the evaluation application. Model files must be in tflite format."
92 ${DEFAULT_MODEL_PATH}
93 FILEPATH
94 )
95
96# Generate model file
97generate_tflite_code(
98 MODEL_PATH ${${use_case}_MODEL_TFLITE_PATH}
99 DESTINATION ${SRC_GEN_DIR}
100 EXPRESSIONS ${EXTRA_MODEL_CODE}
101 )