Wav2letter is a convolutional speech recognition neural network. This implementation was created by Arm and quantized to the INT8 datatype.
Apache-2.0
The class labels associated with this model can be downloaded by running the script get_class_labels.sh
.
Dataset: Librispeech
Platform |
Optimized |
Cortex-A |
✔️ |
Cortex-M |
✔️ |
Mali GPU |
✔️ |
Ethos U |
✔️ |
- ✔️ - Will run on this platform.
- ✖️ - Will not run on this platform.
Optimization |
Value |
Quantization |
INT8 |
Input Node Name |
Shape |
Description |
input_2_int8 |
(1, 296, 39) |
Speech converted to MFCCs and quantized to INT8. |
Output Node Name |
Shape |
Description |
Identity_int8 |
(1, 1, 148, 29) |
A tensor of time and class probabilities, that represents the probability of each class at each timestep. Should be passed to a decoder. For example ctc_beam_search_decoder. |