1 2 3 4 5 6 7 8 9
#!/bin/bash if [ "$1" == "" ]; then echo "Usage: $0 [dataset] [start_file]" 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