Blame view

egs/wsj/s5/utils/prepare_extended_lang.sh 7.01 KB
8dcb6dfcb   Yannick Estève   first commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
  #!/bin/bash
  # Copyright 2018  Xiaohui Zhang
  
  # Licensed under the Apache License, Version 2.0 (the "License");
  # you may not use this file except in compliance with the License.
  # You may obtain a copy of the License at
  #
  #  http://www.apache.org/licenses/LICENSE-2.0
  #
  # THIS CODE IS PROVIDED *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  # KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
  # WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
  # MERCHANTABLITY OR NON-INFRINGEMENT.
  # See the Apache 2 License for the specific language governing permissions and
  # limitations under the License.
  
  # This script adds word-position-dependent phones and constructs a host of other
  # derived files, that go in data/lang/.
  
  # Begin configuration section.
  prep_lang_opts=
  stage=0
  word_list= # if a word list (mapping words from the srcdict to IDs) is provided,
  # we'll make sure the IDs of these words are kept as before.
  # end configuration sections
  
  echo "$0 $@"  # Print the command line for logging
  
  . utils/parse_options.sh
  
  if [ $# -ne 7 ]; then
    echo "usage: utils/prepare_extended_lang.sh <dict-src-dir> <oov-dict-entry> <extra-lexicon> "
    echo "<phone-symbol-table> <extended-dict-dir> <tmp-dir> <extended-lang-dir>"
    echo "e.g.: utils/prepare_extended_lang.sh data/local/dict '<SPOKEN_NOISE>' lexicon_extra.txt"
    echo "data/lang/phones.txt data/local/dict_ext data/local/lang_ext data/lang_ext"
    echo "The goal is to extend the lexicon from <dict-src-dir> with extra lexical entries from "
    echo "<extra-lexicon>, putting the extended lexicon into <extended-dict-dir>, and then build"
    echo "a valid lang dir <extended-lang-dir>. This is useful when we want to extend the vocab"
    echo "in test time."
    echo "<dict-src-dir> must be a valid dictionary dir and <oov-dict-entry> is the oov word "
    echo "(see utils/prepare_lang.sh for details). A phone symbol table from a previsouly built "
    echo "lang dir is required, for validating provided lexical entries."
    echo "options: "
    echo "     --prep-lang-opts STRING              # options to pass to utils/prepare_lang.sh"
    echo "     --word-list <filename>               # default: \"\"; if not empty, re-order the "
    echo "                                          # words in the generated words.txt so that the"
    echo "                                          # words from the provided list have their ids"
    echo "                                          # kept unchanged."
    exit 1;
  fi
  
  srcdict=$1
  oov_word=$2
  extra_lexicon=$3
  phone_symbol_table=$4
  extdict=$5 # extended dict dir
  tmpdir=$6
  extlang=$7 # extended lang dir
  
  mkdir -p $extlang $tmpdir 
  
  [ -f path.sh ] && . ./path.sh
  
  ! utils/validate_dict_dir.pl $srcdict && \
    echo "*Error validating directory $srcdict*" && exit 1;
  
  if [[ ! -f $srcdict/lexicon.txt ]]; then
    echo "**Creating $dir/lexicon.txt from $dir/lexiconp.txt"
    perl -ape 's/(\S+\s+)\S+\s+(.+)/$1$2/;' < $srcdict/lexiconp.txt \
      > $srcdict/lexicon.txt || exit 1;
  fi
  
  if [[ ! -f $srcdict/lexiconp.txt ]]; then
    echo "**Creating $srcdict/lexiconp.txt from $srcdict/lexicon.txt"
    perl -ape 's/(\S+\s+)(.+)/${1}1.0\t$2/;' < $srcdict/lexicon.txt > $srcdict/lexiconp.txt || exit 1;
  fi
  
  # Checks if the phone sets match.
  echo "$(basename $0): Validating the source lexicon"
  cat $srcdict/lexicon.txt | awk -v f=$phone_symbol_table '
  BEGIN { while ((getline < f) > 0) { sub(/_[BEIS]$/, "", $1); phones[$1] = 1; }}
  { for (x = 2; x <= NF; ++x) { 
    if (!($x in phones)) {
      print "The source lexicon contains a phone not in the phones.txt: "$x;
      print "You must provide a phones.txt from the lang built with the source lexicon.";
      exit 1; 
    }
  }}' || exit 1;
  
  echo "$(basename $0): Validating the extra lexicon"
  cat $extra_lexicon | awk -v f=$phone_symbol_table '
  BEGIN { while ((getline < f) > 0) { sub(/_[BEIS]$/, "", $1); phones[$1] = 1; }}
  { for (x = 2; x <= NF; ++x) { if (!($x in phones)) {
      print "The extra lexicon contains a phone not in the phone symbol table: "$x; exit 1; }
    }
  }' || exit 1;
  
  if [ $stage -le 0 ]; then
    # Genearte the extended dict dir
    echo "$(basename $0): Creating the extended lexicon $extdict/lexicon.txt"
    [ -d $extdict ] && rm -r $extdict 2>/dev/null
    cp -R $srcdict $extdict 2>/dev/null
    
    # Reformat the source lexicon
    perl -ape 's/(\S+\s+)\S+\s+(.+)/$1$2/;' <$srcdict/lexiconp.txt | awk '{ gsub(/\t/, " "); print }' \
     >$tmpdir/lexicon.txt || exit 1;
    
    # Filter lexical entries which are already in the source lexicon
    awk '{ gsub(/\t/, " "); print }' $extra_lexicon | sort -u | \
      awk 'NR==FNR{a[$0]=1;next} {if (!($0 in a)) print $0 }' $tmpdir/lexicon.txt - \
      > $extdict/lexicon_extra.txt || exit 1;
    
    echo "$(basename $0): Creating $extdict/lexiconp.txt from $srcdict/lexiconp.txt and $extdict/lexicon_extra.txt"
    perl -ape 's/(\S+\s+)(.+)/${1}1 $2/;' < $extdict/lexicon_extra.txt | \
      cat $srcdict/lexiconp.txt - | awk '{ gsub(/\t/, " "); print }' | \
      sort -u -k1,1 -k2g,2 -k3 > $extdict/lexiconp.txt || exit 1;
    
    perl -ape 's/(\S+\s+)\S+\s+(.+)/$1$2/;' <$extdict/lexiconp.txt  >$extdict/lexicon.txt || exit 1;
    
    # Create lexicon_silprobs.txt
    silprob=false
    [ -f $srcdict/lexiconp_silprob.txt ] && silprob=true
    if "$silprob"; then
      echo "$(basename $0): Creating $extdict/lexiconp_silprob.txt from $srcdict/lexiconp_silprob.txt"
      # Here we assume no acoustic evidence for the extra word-pron pairs.
      # So we assign silprob1 = overall_silprob, silprob2 = silprob3 = 1.00
      overall_silprob=`awk '{if ($1=="overall") print $2}' $srcdict/silprob.txt`
      awk -v overall=$overall_silprob '{
        printf("%s %d %.1f %.2f %.2f",$1, 1, overall, 1.00, 1.00); 
        for(n=2;n<=NF;n++) printf " "$n; printf("
  ");
        }' $extdict/lexicon_extra.txt | cat $srcdict/lexiconp_silprob.txt - | \
        sort -k1,1 -k2g,2 -k6 \
        > $extdict/lexiconp_silprob.txt || exit 1;
    fi
    
    if ! utils/validate_dict_dir.pl $extdict >&/dev/null; then
      utils/validate_dict_dir.pl $extdict  # show the output.
      echo "$(basename $0): Validation failed on the extended dict"
      exit 1;
    fi
  fi
  
  if [ $stage -le 1 ]; then
    echo "$(basename $0): Preparing the extended lang dir."
    [ -d $extlang ] && rm -r $extlang 2>/dev/null
    utils/prepare_lang.sh $prep_lang_opts $extdict \
      $oov_word $tmpdir $extlang || exit 1;
    
    # If a word list is provided, make sure the word-ids of these words are kept unchanged
    # in the extended word list.
    if [ -f $word_list ]; then
      # First, make sure there's no OOV in the provided word-list.
      if [ `awk -v s=$extlang/words.txt 'BEGIN{ while((getline < s) > 0) { vocab[$1] = 1;}} \
          {if (!($1 in vocab)) print $0}' $word_list | wc -l` -gt 0 ]; then
        echo "$(basename $0): The provided word list contains words out of the extended vocab."
        exit 1;
      fi
      awk -v s=$word_list -v oov=$oov_word -v boost=$oov_unigram_prob -v prob=$oov_prob \
        'BEGIN{ while((getline < s) > 0) { vocab[$1] = 1; n+=1; print $0}} \
         { if (!($1 in vocab)) {print $1" "n; n+=1;}}' $extlang/words.txt > $extlang/words.txt.$$
      mv $extlang/words.txt.$$ $extlang/words.txt
    fi
  fi
  
  exit 0;