diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2018-04-22 15:13:43 +0200 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2018-04-22 15:13:43 +0200 |
| commit | eb491c9a5111477fe3bba8fe909da93108ce2eb0 (patch) | |
| tree | ca77053c26db49588818da9cdc5e65010b6721a7 | |
| parent | 04bfcb102e8c6c8cdc543f7009e4845954dbd765 (diff) | |
push
| -rwxr-xr-x | run.sh | 2 | ||||
| -rw-r--r-- | test.py | 4 |
2 files changed, 3 insertions, 3 deletions
@@ -24,7 +24,7 @@ python test.py \ --dataroot "/home/lens/Desktop/thumbs/$dataset/A/train/" \ --name "$dataset" \ --start_img "/home/lens/Desktop/thumbs/$dataset/A/train/frame_1008.png" \ - --how_many 2000 \ + --how_many 1000 \ --model test \ --aspect_ratio 1.777777 \ --which_model_netG unet_256 \ @@ -61,8 +61,8 @@ if __name__ == '__main__': # image_pil.save(save_path) # copyfile(save_path, final_path) if last_im is not None: - frac_a = 1/2 - frac_b = 1/2 + frac_a = 9/10 + frac_b = 1/10 tmp_im = im.copy() array_a = np.multiply(im, frac_a) array_b = np.multiply(last_im, frac_b) |
