资源算法kaldi-lstm

kaldi-lstm

2019-12-25 | |  36 |   0 |   0

LSTM-projected BPTT in Kaldi nnet1

Diagram

Notes:

  • peephole connection(purple) are diagonal

  • output-gate peephole is not recursive

  • dashed arrows: adaptive weight, i.e activations of (input gate, forget gate, output gate)

Currently implementation includes two versions:

  • standard

  • google

Go to sub-directory to get more details.

FAQ

Q1. How to decode with LSTM?

  • Standard version: exactly the same as DNN, feed LSTM nnet into nnet-forward as AM scorer, remember nnet-forward doesn't have a mechanism to delay target, so "time-shift" component is needed to do this.

  • Google version:

    • convert binary nnet into text format via nnet-copy, and open text nnet with your text editor

    • change "Transmit" component to "TimeShift", keep your  setup consistent with "--targets-delay" used in nnet-train-lstm-streams

    • edit "LstmProjectedStreams" to "LstmProjected", remove "NumStream" tag, now the "google version" is converted to "standard version", and you can perform AM scoring via nnet-forward, e.g:

<Nnet>
<TimeShift> 40 40 <Shift> 5
<LstmProjected> 512 40 <CellDim> 800 [ ...
<AffineTransform> 16624 512 <LearnRateCoef> 1 <BiasLearnRateCoef> 1 <MaxNorm> 0  [ ...
<Softmax> 16624 16624
</Nnet>

Q2. How do I stack more than one layer of LSTM?

In google's paper, two layers of medium-sized LSTM is the best setup to beat DNN on WER. You can do this by text level editing:

  • use some of your training data to train one layer LSTM nnet

  • convert it into text format with nnet-copy with "--binary=false"

  • insert a pre-initialized LSTM component text between softmax and your pretrained LSTM, and you can feed all your training data to the stacked LSTM, e.g:

<Nnet>
<Transmit> 40 40
<LstmProjectedStreams> 512 40 <CellDim> 800 <NumStream> 4  [ ...
<LstmProjectedStreams> 512 512 <CellDim> 800 <NumStream> 4  [ ...
<AffineTransform> 16624 512 <LearnRateCoef> 1 <BiasLearnRateCoef> 1 <MaxNorm> 0  [ ...
<Softmax> 16624 16624
</Nnet>

Q3. How do I know when to use "Transmit" or "TimeShift"?

The key is how you apply "target-delay".

  • standard version: the nnet should be trained with "TimeShift" because default nnet1 training tool (nnet-train-frame-shuf & nnet-train-perutt) doesn't provide target delay.

  • google version: due to the complexity of multi-stream training, the training tool "nnet-train-lstm-streams" provides an option "--target-delay", so in multi-stream training, a dummy "Transmit" component is used for a trivial reason related to how nnet1 calls Backpropagate(). But in testing time, the google version is first converted to standard version, so the "transmit" should also be switched to "TimeShift" during the conversion.

Q4. Why are the "dropout" codes commented out?

I implemented the "forward-connection droping out" according another paper from google, but later I didn't implement dropout retention, so the effects of dropout are not tested at all, and I leave it commented out.


上一篇:docker-kaldi-gstreamer-server

下一篇:kaldi-io-for-python

用户评价
全部评价

热门资源

  • seetafaceJNI

    项目介绍 基于中科院seetaface2进行封装的JAVA...

  • spark-corenlp

    This package wraps Stanford CoreNLP annotators ...

  • Keras-ResNeXt

    Keras ResNeXt Implementation of ResNeXt models...

  • capsnet-with-caps...

    CapsNet with capsule-wise convolution Project ...

  • inferno-boilerplate

    This is a very basic boilerplate example for pe...