summaryrefslogtreecommitdiff
path: root/recursive.sh
blob: df1bf93e8a158edf572151ac103e6cb71e81f8a0 (plain)
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