Skip to content

Specify multiple label streams with the HTKMLFReader

Frank Seide edited this page Aug 27, 2016 · 11 revisions

The HTKMLFReader can be configured to read multiple label streams. The example below is taken from TIMIT_TrainMultiTask.cntk in the Examples directory:

reader = {
    readerType = "HTKMLFReader"
    ...
    labels = {
        mlfFile = "$MlfDir$/TIMIT.train.align_cistate.mlf.cntk"
        labelMappingFile = "$MlfDir$/TIMIT.statelist"
        labelDim = 183
        labelType = "category"
    }
    regions = {
        mlfFile = "$MlfDir$/TIMIT.train.align_dr.mlf.cntk"
        labelDim = 8
        labelType = "category"
    }
}
Clone this wiki locally