diff options
| -rw-r--r-- | recursive.sh | 6 | ||||
| -rw-r--r-- | sequence.sh | 7 |
2 files changed, 8 insertions, 5 deletions
diff --git a/recursive.sh b/recursive.sh index 9bd61b6..667fa8e 100644 --- a/recursive.sh +++ b/recursive.sh @@ -4,8 +4,4 @@ if [ "$1" == "" ]; then echo "Usage: $0 [dataset]" exit 1 fi -if [ -e "./checkpoints/${1}" ]; then - python train.py --dataroot "./datasets/${1}/" --name "$1" --label_nc 0 --no_instance --continue_train --which_epoch latest -else - python train.py --dataroot "./datasets/${1}/" --name "$1" --label_nc 0 --no_instance -fi +python recursive.py --dataroot "./datasets/${1}/" --name "$1" --label_nc 0 --no_instance --which_epoch latest diff --git a/sequence.sh b/sequence.sh new file mode 100644 index 0000000..38319e4 --- /dev/null +++ b/sequence.sh @@ -0,0 +1,7 @@ +#!/bin/bash + +if [ "$1" == "" ]; then + echo "Usage: $0 [dataset]" + exit 1 +fi +python sequence.py --dataroot "./datasets/${1}/" --name "$1" --label_nc 0 --no_instance --which_epoch latest |
