summaryrefslogtreecommitdiff
path: root/recursive.sh
blob: 02b2f740e86702a4769a74cd6c2365f44e3f10a7 (plain)
1
2
3
4
5
6
7
8
9
#!/bin/bash

if [ "$1" == "" ]; then
    echo "Usage: $0 [dataset] [start_img]"
    exit 1
fi
d=`date +%s`
mkdir -p "./results/${1}_${d}"
python recursive.py --dataroot "./results/${1}/" --start_img "${2}" --name "$1" --label_nc 0 --no_instance --which_epoch latest --how_many 2000