├── README.md ├── google ├── README.md ├── cudamatrix │ ├── bd-cu-kernels-ansi.h │ ├── bd-cu-kernels.cu │ ├── bd-cu-kernels.h │ ├── cu-matrix.cc │ └── cu-matrix.h ├── feature_transform.nnet.txt ├── matrix │ ├── kaldi-matrix.cc │ └── kaldi-matrix.h ├── nnet.proto ├── nnet │ ├── bd-nnet-lstm-projected-streams.h │ ├── nnet-loss.cc │ ├── nnet-loss.h │ └── nnet-nnet.h ├── nnetbin │ └── bd-nnet-train-lstm-streams.cc ├── papers │ ├── 1990-williams-BPTT.pdf │ ├── 2014-icassp-google-LSTM-ASR.pdf │ ├── 2014-interspeech-google-LSTM-LVCSR.pdf │ ├── 2014-interspeech-google-LSTM-sequential-discriminative-LVCSR.pdf │ └── LSTM_dropout.pdf └── train_lstm_streams.sh ├── misc └── LSTM_DIAG_EQUATION.jpg └── standard ├── README.md ├── nnet.proto └── nnet ├── nnet-lstm-projected.h ├── nnet-time-shift.h └── nnet-transmit-component.h /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dophist/kaldi-lstm/HEAD/README.md -------------------------------------------------------------------------------- /google/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dophist/kaldi-lstm/HEAD/google/README.md -------------------------------------------------------------------------------- /google/cudamatrix/bd-cu-kernels-ansi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dophist/kaldi-lstm/HEAD/google/cudamatrix/bd-cu-kernels-ansi.h -------------------------------------------------------------------------------- /google/cudamatrix/bd-cu-kernels.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dophist/kaldi-lstm/HEAD/google/cudamatrix/bd-cu-kernels.cu -------------------------------------------------------------------------------- /google/cudamatrix/bd-cu-kernels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dophist/kaldi-lstm/HEAD/google/cudamatrix/bd-cu-kernels.h -------------------------------------------------------------------------------- /google/cudamatrix/cu-matrix.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dophist/kaldi-lstm/HEAD/google/cudamatrix/cu-matrix.cc -------------------------------------------------------------------------------- /google/cudamatrix/cu-matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dophist/kaldi-lstm/HEAD/google/cudamatrix/cu-matrix.h -------------------------------------------------------------------------------- /google/feature_transform.nnet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dophist/kaldi-lstm/HEAD/google/feature_transform.nnet.txt -------------------------------------------------------------------------------- /google/matrix/kaldi-matrix.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dophist/kaldi-lstm/HEAD/google/matrix/kaldi-matrix.cc -------------------------------------------------------------------------------- /google/matrix/kaldi-matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dophist/kaldi-lstm/HEAD/google/matrix/kaldi-matrix.h -------------------------------------------------------------------------------- /google/nnet.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dophist/kaldi-lstm/HEAD/google/nnet.proto -------------------------------------------------------------------------------- /google/nnet/bd-nnet-lstm-projected-streams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dophist/kaldi-lstm/HEAD/google/nnet/bd-nnet-lstm-projected-streams.h -------------------------------------------------------------------------------- /google/nnet/nnet-loss.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dophist/kaldi-lstm/HEAD/google/nnet/nnet-loss.cc -------------------------------------------------------------------------------- /google/nnet/nnet-loss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dophist/kaldi-lstm/HEAD/google/nnet/nnet-loss.h -------------------------------------------------------------------------------- /google/nnet/nnet-nnet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dophist/kaldi-lstm/HEAD/google/nnet/nnet-nnet.h -------------------------------------------------------------------------------- /google/nnetbin/bd-nnet-train-lstm-streams.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dophist/kaldi-lstm/HEAD/google/nnetbin/bd-nnet-train-lstm-streams.cc -------------------------------------------------------------------------------- /google/papers/1990-williams-BPTT.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dophist/kaldi-lstm/HEAD/google/papers/1990-williams-BPTT.pdf -------------------------------------------------------------------------------- /google/papers/2014-icassp-google-LSTM-ASR.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dophist/kaldi-lstm/HEAD/google/papers/2014-icassp-google-LSTM-ASR.pdf -------------------------------------------------------------------------------- /google/papers/2014-interspeech-google-LSTM-LVCSR.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dophist/kaldi-lstm/HEAD/google/papers/2014-interspeech-google-LSTM-LVCSR.pdf -------------------------------------------------------------------------------- /google/papers/2014-interspeech-google-LSTM-sequential-discriminative-LVCSR.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dophist/kaldi-lstm/HEAD/google/papers/2014-interspeech-google-LSTM-sequential-discriminative-LVCSR.pdf -------------------------------------------------------------------------------- /google/papers/LSTM_dropout.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dophist/kaldi-lstm/HEAD/google/papers/LSTM_dropout.pdf -------------------------------------------------------------------------------- /google/train_lstm_streams.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dophist/kaldi-lstm/HEAD/google/train_lstm_streams.sh -------------------------------------------------------------------------------- /misc/LSTM_DIAG_EQUATION.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dophist/kaldi-lstm/HEAD/misc/LSTM_DIAG_EQUATION.jpg -------------------------------------------------------------------------------- /standard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dophist/kaldi-lstm/HEAD/standard/README.md -------------------------------------------------------------------------------- /standard/nnet.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dophist/kaldi-lstm/HEAD/standard/nnet.proto -------------------------------------------------------------------------------- /standard/nnet/nnet-lstm-projected.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dophist/kaldi-lstm/HEAD/standard/nnet/nnet-lstm-projected.h -------------------------------------------------------------------------------- /standard/nnet/nnet-time-shift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dophist/kaldi-lstm/HEAD/standard/nnet/nnet-time-shift.h -------------------------------------------------------------------------------- /standard/nnet/nnet-transmit-component.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dophist/kaldi-lstm/HEAD/standard/nnet/nnet-transmit-component.h --------------------------------------------------------------------------------