-
Notifications
You must be signed in to change notification settings - Fork 5.4k
[src,script,egs] Goodness of Pronunciation (GOP) #3703
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 3 commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
63f83be
update librispeech nnet3 for reproducing
naxingyu b5a6d32
Merge pull request #2 from naxingyu/update-librispeech-nnet3
jimbozhang 192795d
[src,script,egs] An implementation of GOP-NN.
jimbozhang cd2514a
[egs] Added some comments in egs/gop/s5/run.sh
jimbozhang c7ebb91
update librispeech results
naxingyu 0364c70
Merge pull request #3 from naxingyu/update-librispeech-nnet3
jimbozhang 9a359f0
[src,egs] Modify function parameters and fix typo for gop
jimbozhang d5af203
[script,egs] mv utils/remove_symbols_from_phones.pl to local/remove_p…
jimbozhang 2753855
[src] Rename PdfToPhonesDict() to GetPdfToPhonesMap() and use std::ve…
jimbozhang 4a10f4f
[src] format the codes with some spaces
jimbozhang File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,98 @@ | ||
| There is a copy of this document on Google Docs, which renders the equations better: | ||
| [link](https://docs.google.com/document/d/1pie-PU6u2NZZC_FzocBGGm6mpfBJMiCft9UoG0uA1kA/edit?usp=sharing) | ||
|
|
||
| * * * | ||
|
|
||
| # GOP on Kaldi | ||
|
|
||
| The Goodness of Pronunciation (GOP) is a variation of the posterior probability, for phone level pronunciation scoring. | ||
| GOP is widely used in pronunciation evaluation and mispronunciation detection tasks. | ||
|
|
||
| This implementation is mainly based on the following paper: | ||
|
|
||
| Hu, W., Qian, Y., Soong, F. K., & Wang, Y. (2015). Improved mispronunciation detection with deep neural network trained acoustic models and transfer learning based logistic regression classifiers. Speech Communication, 67(January), 154-166. | ||
|
|
||
| ## GOP-GMM | ||
|
|
||
| In the conventional GMM-HMM based system, GOP was first proposed in (Witt et al., 2000). It was defined as the duration normalised log of the posterior: | ||
|
|
||
| $$ | ||
| GOP(p)=\frac{1}{t_e-t_s+1} \log p(p|\mathbf o) | ||
| $$ | ||
|
|
||
| where $\mathbf o$ is the input observations, $p$ is the canonical phone, $t_s, t_e$ are the start and end frame indexes. | ||
|
|
||
| Assuming $p(q_i)\approx p(q_j)$ for any $q_i, q_j$, we have: | ||
|
|
||
| $$ | ||
| \log p(p|\mathbf o)=\frac{p(\mathbf o|p)p(p)}{\sum_{q\in Q} p(\mathbf o|q)p(q)} | ||
| \approx\frac{p(\mathbf o|p)}{\sum_{q\in Q} p(\mathbf o|q)} | ||
| $$ | ||
|
|
||
| where $Q$ is the whole phone set. | ||
|
|
||
| The numerator of the equation is calculated from forced alignment result and the denominator is calculated from an Viterbi decoding with a unconstrained phone loop. | ||
|
|
||
| We do not implement GOP-GMM for Kaldi, as GOP-NN performs much better than GOP-GMM. | ||
|
|
||
| ## GOP-NN | ||
|
|
||
| The definition of GOP-NN is a bit different from the GOP-GMM. GOP-NN was defined as the log phone posterior ratio between the canonical phone and the one with the highest score (Hu et al., 2015). | ||
|
|
||
| Firstly we define Log Phone Posterior (LPP): | ||
|
|
||
| $$ | ||
| LPP(p)=\log p(p|\mathbf o; t_s,t_e) | ||
| $$ | ||
|
|
||
| Then we define the GOP-NN using LPP: | ||
|
|
||
| $$ | ||
| GOP(p)=\log \frac{LPP(p)}{\max_{q\in Q} LPP(q)} | ||
| $$ | ||
|
|
||
| LPP could be calculated as: | ||
|
|
||
| $$ | ||
| LPP(p) \approx \frac{1}{t_e-t_s+1} \sum_{t=t_s}^{t_e}\log p(p|o_t) | ||
| $$ | ||
|
|
||
| $$ | ||
| p(p|o_t) = \sum_{s \in p} p(s|o_t) | ||
| $$ | ||
|
|
||
| where $s$ is the senone label, $\{s|s \in p\}$ is the states belonging to those triphones whose current phone is $p$. | ||
|
|
||
| ## Phone-level Feature | ||
|
|
||
| Normally the classifier-based approach archives better performance than GOP-based approach. | ||
|
|
||
| Different from GOP based method, an extra supervised training process is needed. The input features for supervised training are phone-level, segmental features. The phone-level feature is defined as: | ||
|
|
||
| $$ | ||
| {[LPP(p_1),\cdots,LPP(p_M), LPR(p_1|pi), \cdots, LPR(p_j|p_i),\cdots]}^T | ||
| $$ | ||
|
|
||
| where the Log Posterior Ratio (LPR) between phone $p_j$ and $p_i$ is defined as: | ||
|
|
||
| $$ | ||
| LPR(p_j|p_i) = \log p(p_j|\mathbf o; t_s, t_e) - \log p(p_i|\mathbf o; t_s, t_e) | ||
| $$ | ||
|
|
||
| ## Implementation | ||
|
|
||
| This implementation consists of a executable binary `bin/compute-gop` and some scripts. | ||
|
|
||
| `compute-gop` computes GOP and extracts phone-level features using nnet output probabilities. | ||
| The output probabilities are assumed to be from a log-softmax layer. | ||
|
|
||
| The script `run.sh` shows a typical pipeline based on librispeech's model and data. | ||
|
|
||
| In Hu's paper, GOP was computed using a feed-forward DNN. | ||
| We have tried to use the output-xent of a chain model to compute GOP, but the result was not good. | ||
| We guess the HMM topo of chain model may not fit for GOP. | ||
|
|
||
| The nnet3's TDNN (no chain) model performs well in GOP computing, so this recipe uses it. | ||
|
|
||
| ## Acknowledgement | ||
| The author of this recipe would like to thank Xingyu Na for his works of model tuning and his helpful suggestions. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,13 @@ | ||
| # you can change cmd.sh depending on what type of queue you are using. | ||
| # If you have no queueing system and want to run on a local machine, you | ||
| # can change all instances 'queue.pl' to run.pl (but be careful and run | ||
| # commands one by one: most recipes will exhaust the memory on your | ||
| # machine). queue.pl works with GridEngine (qsub). slurm.pl works | ||
| # with slurm. Different queues are configured differently, with different | ||
| # queue names and different ways of specifying things like memory; | ||
| # to account for these differences you can create and edit the file | ||
| # conf/queue.conf to match your queue's configuration. Search for | ||
| # conf/queue.conf in http://kaldi-asr.org/doc/queue.html for more information, | ||
| # or search for the string 'default_config' in utils/queue.pl or utils/slurm.pl. | ||
|
|
||
| export cmd="run.pl" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| #!/bin/bash | ||
|
|
||
| src=$1 | ||
| dst=$2 | ||
|
|
||
| # Select a very small set for testing | ||
| utils/subset_data_dir.sh --shortest $src 10 $dst | ||
|
|
||
| # make fake transcripts as negative examples | ||
| cp $dst/text $dst/text.ori | ||
| sed -i "s/ THERE / THOSE /" $dst/text | ||
| sed -i "s/ IN / ON /" $dst/text |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,27 @@ | ||
| export KALDI_ROOT=`pwd`/../../.. | ||
| export PATH=$PWD/utils/:$KALDI_ROOT/tools/openfst/bin:$PWD:$PATH | ||
| [ ! -f $KALDI_ROOT/tools/config/common_path.sh ] && echo >&2 "The standard file $KALDI_ROOT/tools/config/common_path.sh is not present -> Exit!" && exit 1 | ||
| . $KALDI_ROOT/tools/config/common_path.sh | ||
| export LC_ALL=C | ||
|
|
||
| # we use this both in the (optional) LM training and the G2P-related scripts | ||
| PYTHON='python2.7' | ||
|
|
||
| ### Below are the paths used by the optional parts of the recipe | ||
|
|
||
| # We only need the Festival stuff below for the optional text normalization(for LM-training) step | ||
| FEST_ROOT=tools/festival | ||
| NSW_PATH=${FEST_ROOT}/festival/bin:${FEST_ROOT}/nsw/bin | ||
| export PATH=$PATH:$NSW_PATH | ||
|
|
||
| # SRILM is needed for LM model building | ||
| SRILM_ROOT=$KALDI_ROOT/tools/srilm | ||
| SRILM_PATH=$SRILM_ROOT/bin:$SRILM_ROOT/bin/i686-m64 | ||
| export PATH=$PATH:$SRILM_PATH | ||
|
|
||
| # Sequitur G2P executable | ||
| sequitur=$KALDI_ROOT/tools/sequitur/g2p.py | ||
| sequitur_path="$(dirname $sequitur)/lib/$PYTHON/site-packages" | ||
|
|
||
| # Directory under which the LM training corpus should be extracted | ||
| LM_CORPUS_ROOT=./lm-corpus |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,81 @@ | ||
| #!/bin/bash | ||
|
|
||
| # Copyright 2019 Junbo Zhang | ||
| # Apache 2.0 | ||
|
|
||
| # This script shows how to calculate Goodness of Pronunciation (GOP) and | ||
| # extract phone-level pronunciation feature for mispronunciations detection | ||
| # tasks. Read ../README.md or the following paper for details: | ||
| # | ||
| # "Hu et al., Improved mispronunciation detection with deep neural network | ||
| # trained acoustic models and transfer learning based logistic regression | ||
| # classifiers, 2015." | ||
|
|
||
| # You might not want to do this for interactive shells. | ||
| set -e | ||
|
|
||
| # Before running this recipe, you have to run the librispeech recipe firstly. | ||
| # This script assumes the following paths exist. | ||
| librispeech_eg=../../librispeech/s5 | ||
| model=$librispeech_eg/exp/nnet3_cleaned/tdnn_sp | ||
| ivector=$librispeech_eg/exp/nnet3_cleaned/ivectors_test_clean_hires | ||
| lang=$librispeech_eg/data/lang | ||
| test_data=$librispeech_eg/data/test_clean_hires | ||
|
|
||
| for d in $model $ivector $lang $test_data; do | ||
| [ ! -d $d ] && echo "$0: no such path $d" && exit 1; | ||
| done | ||
|
|
||
| # Global configurations | ||
| stage=10 | ||
jimbozhang marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| nj=4 | ||
|
|
||
| data=test_10short | ||
| dir=exp/gop_$data | ||
|
|
||
| . ./cmd.sh | ||
| . ./path.sh | ||
| . parse_options.sh | ||
|
|
||
| if [ $stage -le 10 ]; then | ||
jimbozhang marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| # Prepare test data | ||
| [ -d data ] || mkdir -p data/$data | ||
| local/make_testcase.sh $test_data data/$data | ||
| fi | ||
|
|
||
| if [ $stage -le 20 ]; then | ||
jimbozhang marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| # Compute Log-likelihoods | ||
| steps/nnet3/compute_output.sh --cmd "$cmd" --nj $nj \ | ||
| --online-ivector-dir $ivector data/$data $model exp/probs_$data | ||
| fi | ||
|
|
||
| if [ $stage -le 30 ]; then | ||
jimbozhang marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| steps/nnet3/align.sh --cmd "$cmd" --nj $nj --use_gpu false \ | ||
| --online_ivector_dir $ivector data/$data $lang $model $dir | ||
| fi | ||
|
|
||
| if [ $stage -le 40 ]; then | ||
jimbozhang marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| # make a map which converts phones to "pure-phones" | ||
| # "pure-phone" means the phone whose stress and pos-in-word symbols are ignored | ||
| # eg. AE1_B --> AE, EH2_S --> EH, SIL --> SIL | ||
| utils/remove_symbols_from_phones.pl $lang/phones.txt $dir/phones-pure.txt \ | ||
| $dir/phone-to-pure-phone.int | ||
|
|
||
| # Convert transition-id to pure-phone id | ||
| $cmd JOB=1:$nj $dir/log/ali_to_phones.JOB.log \ | ||
| ali-to-phones --per-frame=true $model/final.mdl "ark,t:gunzip -c $dir/ali.JOB.gz|" \ | ||
| "ark,t:-" \| utils/apply_map.pl -f 2- $dir/phone-to-pure-phone.int \| \ | ||
| gzip -c \>$dir/ali-pure-phone.JOB.gz || exit 1; | ||
| fi | ||
|
|
||
| if [ $stage -le 50 ]; then | ||
jimbozhang marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| # Compute GOP and phone-level feature | ||
| $cmd JOB=1:$nj $dir/log/compute_gop.JOB.log \ | ||
| compute-gop --phone-map=$dir/phone-to-pure-phone.int $model/final.mdl \ | ||
| "ark,t:gunzip -c $dir/ali-pure-phone.JOB.gz|" \ | ||
| "ark:exp/probs_$data/output.JOB.ark" \ | ||
| "ark,t:$dir/gop.JOB.txt" "ark,t:$dir/phonefeat.JOB.txt" || exit 1; | ||
|
|
||
| echo "Done compute-gop, the results: \"$dir/gop.<JOB>.txt\" in posterior format." | ||
| echo "The phones whose gop values less than -5 could be treated as mispronunciations." | ||
jimbozhang marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| fi | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| ../../wsj/s5/steps |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| ../../wsj/s5/utils |
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| tuning/run_tdnn_1b.sh |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.