blob: db65730b0fb3d46e472872f5b214965c9220522b (
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 --phase recursive --dataroot "./results/${1}/" --start_img "${2}" --name "$1" --label_nc 0 --no_instance --which_epoch latest --how_many 2000
|