-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathrun.sh
executable file
·75 lines (63 loc) · 2.47 KB
/
run.sh
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
#!/bin/bash
# This script is used to run the enhancement.
set -euo pipefail
nj=8
rttm_dir=""
affix="_oracle"
stage=0
stop_stage=100
. ./path.sh
. parse_options.sh
CORPUS_DIR=/export/corpora5/amicorpus
DATA_DIR=data/
EXP_DIR=exp/ami${affix}
cmd="queue-ackgpu.pl --gpu 1 --mem 4G --config conf/gpu.conf"
mkdir -p $DATA_DIR
mkdir -p $EXP_DIR
if [ -z $rttm_dir ]; then
supervisions_path=$DATA_DIR/ami_supervisions_all.jsonl.gz
else
supervisions_path=$EXP_DIR/supervisions_${rttm_tag}.jsonl.gz
fi
if [ $stage -le 0 ] && [ $stop_stage -ge 0 ]; then
echo "Stage 0: Prepare manifests"
lhotse prepare ami --mic mdm --partition full-corpus-asr $CORPUS_DIR $DATA_DIR
lhotse combine $DATA_DIR/ami-mdm_recordings_{dev,test}.jsonl.gz data/ami-mdm_recordings_all.jsonl.gz
lhotse combine $DATA_DIR/ami-mdm_supervisions_{dev,test}.jsonl.gz data/ami-mdm_supervisions_all.jsonl.gz
fi
if [ $stage -le 1 ] && [ $stop_stage -ge 1 ] && [ ! -z $rttm_dir ]; then
echo "Stage 1: Create supervisions from RTTM file"
gss utils rttm-to-supervisions --channels 7 $rttm_dir $supervisions_path
fi
if [ $stage -le 2 ] && [ $stop_stage -ge 2 ]; then
echo "Stage 2: Prepare cut set"
lhotse cut simple --force-eager \
-r $DATA_DIR/ami-mdm_recordings_all.jsonl.gz \
-s $supervisions_path \
$EXP_DIR/cuts.jsonl.gz
fi
if [ $stage -le 3 ] && [ $stop_stage -ge 3 ]; then
echo "Stage 3: Trim cuts to supervisions (1 cut per supervision segment)"
lhotse cut trim-to-supervisions --discard-overlapping \
$EXP_DIR/cuts.jsonl.gz $EXP_DIR/cuts_per_segment.jsonl.gz
fi
if [ $stage -le 4 ] && [ $stop_stage -ge 4 ]; then
echo "Stage 4: Split segments into $nj parts"
gss utils split $nj $EXP_DIR/cuts_per_segment.jsonl.gz $EXP_DIR/split$nj
fi
if [ $stage -le 5 ] && [ $stop_stage -ge 5 ]; then
echo "Stage 5: Enhance segments using GSS"
$cmd JOB=1:$nj $EXP_DIR/log/enhance.JOB.log \
gss utils gpu_check $nj $cmd \& gss enhance cuts \
$EXP_DIR/cuts.jsonl.gz $EXP_DIR/split$nj/cuts_per_segment.JOB.jsonl.gz \
$EXP_DIR/enhanced \
--channels 0,1,2,3,4,5,6,7 \
--bss-iterations 10 \
--min-segment-length 0.0 \
--max-segment-length 15.0 \
--max-batch-duration 20.0 \
--num-buckets 3 \
--enhanced-manifest $EXP_DIR/split$nj/cuts_enhanced.JOB.jsonl.gz
echo "Stage 5: Combine enhanced cuts"
lhotse combine $EXP_DIR/split$nj/cuts_enhanced.*.jsonl.gz $EXP_DIR/cuts_enhanced.jsonl.gz
fi