Blame view

Scripts/steps/search_index.sh 1.42 KB
ec85f8892   bigot benjamin   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
  #!/bin/bash
  
  # Copyright 2012  Johns Hopkins University (Author: Guoguo Chen)
  # Apache 2.0
  
  # Begin configuration section.  
  cmd=run.pl
  nbest=-1
  strict=true
  indices_dir=
  # End configuration section.
  
  echo "$0 $@"  # Print the command line for logging
  
  [ -f ./path.sh ] && . ./path.sh; # source the path.
  . parse_options.sh || exit 1;
  
  if [ $# != 2 ]; then
     echo "Usage: steps/search_index.sh [options] <kws-data-dir> <kws-dir>"
     echo " e.g.: steps/search_index.sh data/kws exp/sgmm2_5a_mmi/decode/kws/"
     echo ""
     echo "main options (for others, see top of script file)"
     echo "  --cmd (utils/run.pl|utils/queue.pl <queue opts>) # how to run jobs."
     echo "  --nbest <int>                                    # return n best results. (-1 means all)"
     echo "  --indices-dir <path>                             # where the indices should be stored, by default it will be in <kws-dir>"
     exit 1;
  fi
  
  
  kwsdatadir=$1;
  kwsdir=$2;
  
  if [ -z $indices_dir ] ; then
    indices_dir=$kwsdir
  fi
  
  mkdir -p $kwsdir/log;
  nj=`cat $indices_dir/num_jobs` || exit 1;
  keywords=$kwsdatadir/keywords.fsts;
  
  for f in $indices_dir/index.1.gz $keywords; do
    [ ! -f $f ] && echo "make_index.sh: no such file $f" && exit 1;
  done
  
  $cmd JOB=1:$nj $kwsdir/log/search.JOB.log \
    kws-search --strict=$strict --negative-tolerance=-1 \
    "ark:gzip -cdf $indices_dir/index.JOB.gz|" ark:$keywords \
    "ark,t:|int2sym.pl -f 2 $kwsdatadir/utter_id > $kwsdir/result.JOB"
  
  exit 0;