Blame view

egs/tedlium/s5_r2/local/format_lms.sh 1.27 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
  #!/bin/bash
  #
  # Copyright  2014 Nickolay V. Shmyrev
  # Apache 2.0
  
  if [ -f path.sh ]; then . ./path.sh; fi
  
  
  small_arpa_lm=data/local/local_lm/data/arpa/4gram_small.arpa.gz
  big_arpa_lm=data/local/local_lm/data/arpa/4gram_big.arpa.gz
  
  for f in $small_arpa_lm $big_arpa_lm data/lang_nosp/words.txt; do
    [ ! -f $f ] && echo "$0: expected file $f to exist" && exit 1
  done
  
  
  set -e
  
  if [ -f data/lang_nosp/G.fst ] && [ data/lang_nosp/G.fst -nt $small_arpa_lm ]; then
    echo "$0: not regenerating data/lang_nosp/G.fst as it already exists and "
    echo ".. is newer than the source LM."
  else
    arpa2fst --disambig-symbol=#0 --read-symbol-table=data/lang_nosp/words.txt \
      "gunzip -c $small_arpa_lm|" data/lang_nosp/G.fst
    echo  "$0: Checking how stochastic G is (the first of these numbers should be small):"
    fstisstochastic data/lang_nosp/G.fst || true
    utils/validate_lang.pl --skip-determinization-check data/lang_nosp
  fi
  
  
  
  if [ -f data/lang_nosp_rescore/G.carpa ] && [ data/lang_nosp_rescore/G.carpa -nt $big_arpa_lm ] && \
      [ data/lang_nosp_rescore/G.carpa -nt data/lang_nosp/words.txt ]; then
    echo "$0: not regenerating data/lang_nosp_rescore/ as it seems to already by up to date."
  else
    utils/build_const_arpa_lm.sh $big_arpa_lm data/lang_nosp data/lang_nosp_rescore || exit 1;
  fi
  
  exit 0;