HoneyTian's picture
update
394325b
#!/usr/bin/env bash
: <<'END'
sh run_batch.sh --save_date 2025-07-19
END
# params
system_version="centos";
verbose=true;
stage=0 # start from 0 if you need to start from data preparation
stop_stage=9
noise_dir=data/noise/nx-noise/id-ID
speech_dir=data/speech/nx-speech/id-ID
save_date=2025-05-17
# parse options
while true; do
[ -z "${1:-}" ] && break; # break if there are no arguments
case "$1" in
--*) name=$(echo "$1" | sed s/^--// | sed s/-/_/g);
eval '[ -z "${'"$name"'+xxx}" ]' && echo "$0: invalid option $1" 1>&2 && exit 1;
old_value="(eval echo \\$$name)";
if [ "${old_value}" == "true" ] || [ "${old_value}" == "false" ]; then
was_bool=true;
else
was_bool=false;
fi
# Set the variable to the right value-- the escaped quotes make it work if
# the option had spaces, like --cmd "queue.pl -sync y"
eval "${name}=\"$2\"";
# Check that Boolean-valued arguments are really Boolean.
if $was_bool && [[ "$2" != "true" && "$2" != "false" ]]; then
echo "$0: expected \"true\" or \"false\": $1 $2" 1>&2
exit 1;
fi
shift 2;
;;
*) break;
esac
done
if [ $system_version == "windows" ]; then
alias python3='D:/Users/tianx/PycharmProjects/virtualenv/nx_noise/Scripts/python.exe'
elif [ $system_version == "centos" ] || [ $system_version == "ubuntu" ]; then
#source /data/local/bin/nx_noise/bin/activate
alias python3='/data/local/bin/nx_noise/bin/python3'
fi
python3 step_1_make_calling_noise.py --noise_dir "${noise_dir}/${save_date}"
python3 step_2_make_calling_speech.py --speech_dir "${speech_dir}/${save_date}"