You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
292 B
16 lines
292 B
3 years ago
|
#!/bin/bash
|
||
|
|
||
|
stage=0
|
||
|
stop_stage=100
|
||
|
|
||
|
config_path=$1
|
||
|
|
||
|
if [ ${stage} -le 0 ] && [ ${stop_stage} -ge 0 ]; then
|
||
|
python3 ${BIN_DIR}/preprocess.py \
|
||
|
--input=~/datasets/BZNSYP/ \
|
||
|
--output=dump \
|
||
|
--dataset=csmsc \
|
||
|
--config=${config_path} \
|
||
|
--num-cpu=20
|
||
|
fi
|