mirror of
https://github.com/k2-fsa/icefall.git
synced 2025-08-09 10:02:22 +00:00
* print out timestamps during decoding * add word-level alignments * support to compute mean symbol delay with word-level alignments * print variance of symbol delay * update doc * support to compute delay for pruned_transducer_stateless4 * fix bug * add doc
13 lines
268 B
Bash
Executable File
13 lines
268 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -eou pipefail
|
|
|
|
alignments_dir=data/alignment
|
|
cuts_in_dir=data/fbank
|
|
cuts_out_dir=data/fbank_ali
|
|
|
|
python3 ./local/add_alignment_librispeech.py \
|
|
--alignments-dir $alignments_dir \
|
|
--cuts-in-dir $cuts_in_dir \
|
|
--cuts-out-dir $cuts_out_dir
|