You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- if [ -z "$DATA_DIR" ]
- then
- DATA_DIR="./data"
- fi
-
- mkdir -vp $DATA_DIR
-
- cmd="python -u ./data-prepare.py --sighan05 $1 --sighan08 $2 --data_path $DATA_DIR"
- echo $cmd
- eval $cmd
-
- cmd="python -u ./data-process.py --data_path $DATA_DIR"
- echo $cmd
- eval $cmd
|