blob: d191c6a4465be012434a927a4e17b57658f66a7a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
recursive_frac=0.5
tag='correct_rec${recursive_frac}'
dataset='/home/lens/Desktop/woods_videos/processed/dataset/B/'
how_many=200
python test-mogrify.py \
--dataroot "$dataset/train/" \
--start_img "$dataset/test/frame_00003.png" \
--experiment "${tag}_dark" \
--name pcfade \
--loadSize 256 --fineSize 256 --how_many $how_many \
--model test --which_model_netG unet_256 \
--which_direction AtoB --dataset_mode recursive \
--recursive --clahe --posterize --blur \
--recursive-frac $recursive_frac \
--norm batch
python test-mogrify.py \
--dataroot "$dataset/train/" \
--start_img "$dataset/test/frame_00003.png" \
--experiment "${tag}_dark_reverse" \
--name pcfade \
--loadSize 256 --fineSize 256 --how_many $how_many \
--model test --which_model_netG unet_256 \
--which_direction BtoA --dataset_mode recursive \
--recursive --clahe --posterize --blur \
--recursive-frac $recursive_frac \
--norm batch
# python test-mogrify.py \
# --dataroot "$dataset/train/" \
# --start_img "$dataset/B/test/frame_00003.png" \
# --experiment "${tag}_dark" \
# --name pcfade \
# --loadSize 256 --fineSize 256 --how_many $how_many \
# --model test --which_model_netG unet_256 \
# --which_direction AtoB --dataset_mode recursive \
# --recursive --clahe --posterize \
# --recursive-frac $recursive_frac \
# --norm batch
|