Blame view

egs/gale_arabic/s5b/local/prepare_dict.sh 1.71 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
  #!/usr/bin/env bash
  
  # Copyright 2017 QCRI (author: Ahmed Ali)
  # Apache 2.0
  # This script prepares the dictionary.
  
  set -e
  dir=data/local/dict
  lexicon_url1="http://alt.qcri.org//resources/speech/dictionary/ar-ar_grapheme_lexicon_2016-02-09.bz2";
  lexicon_url2="http://alt.qcri.org//resources/speech/dictionary/ar-ar_lexicon_2014-03-17.txt.bz2";
  stage=0
  . ./cmd.sh
  . ./path.sh
  . ./utils/parse_options.sh || exit 1;
  mkdir -p $dir data/local/lexicon_data
  
  if [ $stage -le 0 ]; then
    echo "$0: Downloading text for lexicon... $(date)."
    wget -P data/local/lexicon_data $lexicon_url1
    wget -P data/local/lexicon_data $lexicon_url2
    bzcat data/local/lexicon_data/ar-ar_grapheme_lexicon_2016-02-09.bz2  | sed '1,3d' | awk '{print $1}'  >  data/local/lexicon_data/grapheme_lexicon
    bzcat data/local/lexicon_data/ar-ar_lexicon_2014-03-17.txt.bz2 | sed '1,3d' | awk '{print $1}' >>  data/local/lexicon_data/grapheme_lexicon
    cat data/train/text | cut -d ' ' -f 2- | tr -s " " "
  " | sort -u >> data/local/lexicon_data/grapheme_lexicon
  fi
  
  
  if [ $stage -le 0 ]; then
    echo "$0: processing lexicon text and creating lexicon... $(date)."
    # remove vowels and  rare alef wasla
    grep -v [0-9] data/local/lexicon_data/grapheme_lexicon |  sed -e 's:[FNKaui\~o\`]::g' -e 's:{:}:g' | sort -u > data/local/lexicon_data/processed_lexicon
    local/prepare_lexicon.py
  fi
  
  cut -d' ' -f2- $dir/lexicon.txt | sed 's/SIL//g' | tr ' ' '
  ' | sort -u | sed '/^$/d' >$dir/nonsilence_phones.txt || exit 1;
  
  sed -i '1i<UNK> UNK' $dir/lexicon.txt
  
  echo UNK >> $dir/nonsilence_phones.txt
  
  echo '<sil> SIL' >> $dir/lexicon.txt
  
  echo SIL > $dir/silence_phones.txt
  
  echo SIL >$dir/optional_silence.txt
  
  echo -n "" >$dir/extra_questions.txt
  
  echo "$0: Dictionary preparation succeeded"