diff options
| author | jules@lens <julescarbon@gmail.com> | 2018-05-08 23:53:07 +0200 |
|---|---|---|
| committer | jules@lens <julescarbon@gmail.com> | 2018-05-08 23:53:07 +0200 |
| commit | 3ec7af8d74608a44240bac690a0300cd19c92298 (patch) | |
| tree | cceda35ca33199a6ded0d48561aef148caa97d1f /run100k.sh | |
| parent | 2f4375e03ba13625497a5c4bae381a6ad0c6f937 (diff) | |
runner scripts
Diffstat (limited to 'run100k.sh')
| -rwxr-xr-x | run100k.sh | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/run100k.sh b/run100k.sh new file mode 100755 index 0000000..1ad9e77 --- /dev/null +++ b/run100k.sh @@ -0,0 +1,32 @@ +dataset="randomcrops100k" + +/home/lens/Desktop/dataset-random.pl + +python datasets/combine_A_and_B.py \ + --fold_A "/home/lens/Desktop/thumbs/$dataset/A" \ + --fold_B "/home/lens/Desktop/thumbs/$dataset/B" \ + --fold_AB "./datasets/$dataset/" + +python train.py \ + --dataroot "./datasets/$dataset" \ + --name "$dataset" \ + --model pix2pix \ + --which_model_netG unet_256 \ + --which_direction AtoB \ + --lambda_B 100 \ + --dataset_mode aligned \ + --no_lsgan --norm batch --pool_size 0 + +python test.py \ + --dataroot "/home/lens/Desktop/thumbs/$dataset/A/train/" \ + --name "$dataset" \ + --start_img "/home/lens/Desktop/thumbs/$dataset/A/train/frame_0000.png" \ + --how_many 2000 \ + --model test \ + --aspect_ratio 1.777777 \ + --which_model_netG unet_256 \ + --which_direction AtoB \ + --dataset_mode recursive \ + --norm batch + + |
