diff options
Diffstat (limited to 'recursive.sh')
| -rw-r--r-- | recursive.sh | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/recursive.sh b/recursive.sh index 667fa8e..df1bf93 100644 --- a/recursive.sh +++ b/recursive.sh @@ -1,7 +1,9 @@ #!/bin/bash if [ "$1" == "" ]; then - echo "Usage: $0 [dataset]" + echo "Usage: $0 [dataset] [start_file]" exit 1 fi -python recursive.py --dataroot "./datasets/${1}/" --name "$1" --label_nc 0 --no_instance --which_epoch latest +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 |
