diff options
| -rw-r--r-- | recursive.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/recursive.sh b/recursive.sh index df1bf93..02b2f74 100644 --- a/recursive.sh +++ b/recursive.sh @@ -1,9 +1,9 @@ #!/bin/bash if [ "$1" == "" ]; then - echo "Usage: $0 [dataset] [start_file]" + echo "Usage: $0 [dataset] [start_img]" exit 1 fi d=`date +%s` mkdir -p "./results/${1}_${d}" -python recursive.py --dataroot "./results/${1}/" --start_file "${2}" --name "$1" --label_nc 0 --no_instance --which_epoch latest --how_many 2000 +python recursive.py --dataroot "./results/${1}/" --start_img "${2}" --name "$1" --label_nc 0 --no_instance --which_epoch latest --how_many 2000 |
