#!/usr/bin/env bash set -x NAME='ast_day2night' TASK='AST' DATA='day2night' CROOT='./datasets/bdd100k' SROOT='./datasets/bdd100k' CKPTROOT='./checkpoints' WORKER=4 python train.py \ --name $NAME \ --task $TASK \ --gpu_ids 0 \ --checkpoints_dir $CKPTROOT \ --batchSize 1 \ --dataset_mode $DATA \ --croot $CROOT \ --sroot $SROOT \ --nThreads $WORKER \ --no_pairing_check \ --no_instance \ --gan_mode hinge \ --num_upsampling_layers more \ --alpha 1.0 \ --display_freq 200 \ --save_epoch_freq 2 \ --niter 10 \ --lambda_vgg 2 \ --lambda_feat 1