blob: 4565816b6fdb5554e8a6ef4c29519eafd600d9a2 (
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
43
44
45
46
47
|
python test-mogrify.py \
--dataroot /home/lens/Desktop/woods_videos/processed/dataset/A/train/ \
--start_img /home/lens/Desktop/woods_videos/processed/dataset/A/test/frame_00003.png \
--experiment dark \
--name pcfade \
--loadSize 256 \
--fineSize 256 \
--how_many 200 \
--model test \
--which_model_netG unet_256 \
--which_direction AtoB \
--dataset_mode recursive \
--recursive \
--clahe --posterize \
--norm batch
python test-mogrify.py \
--dataroot /home/lens/Desktop/woods_videos/processed/dataset/A/train/ \
--start_img /home/lens/Desktop/woods_videos/processed/dataset/A/test/frame_00603.png \
--experiment medium \
--name pcfade \
--loadSize 256 \
--fineSize 256 \
--how_many 200 \
--model test \
--which_model_netG unet_256 \
--which_direction AtoB \
--dataset_mode recursive \
--recursive \
--clahe --posterize \
--norm batch
python test-mogrify.py \
--dataroot /home/lens/Desktop/woods_videos/processed/dataset/A/train/ \
--start_img /home/lens/Desktop/woods_videos/processed/dataset/A/test/frame_01203.png \
--experiment lite \
--name pcfade \
--loadSize 256 \
--fineSize 256 \
--how_many 200 \
--model test \
--which_model_netG unet_256 \
--which_direction AtoB \
--dataset_mode recursive \
--recursive \
--clahe --posterize \
--norm batch
|