Concept
Collapsing Function
The collapsing function in Connectionist Temporal Classification (CTC) transforms alignment to the final output sequence. It has two steps:
-
Remove any consecutive letters. For example, “dinner” is turned into “diner”
-
Remove blanks. For example, if we use “_” to denote blanks, “din_ner” is turned into “dinner”.
As a result, the collapsing function is a mapping from many to one. For example, “dinn_ner” and “diin_nne_r” both map to “dinner”.
0
1
Updated 2022-05-08
Tags
Deep Learning (in Machine learning)
Speech recognition
Data Science