blob: fdf632aa9c95aaf1bcf3be2eedacd3e18a0fc477 (
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
|
python test-mogrify.py \
--dataroot /home/lens/code/pix2pix/datasets/pcfade/train/frame_00000.png \
--experiment darkframe \
--name pcfade \
--loadSize 256 \
--fineSize 256 \
--how_many 200 \
--model test \
--which_model_netG unet_256 \
--which_direction AtoB \
--dataset_mode aligned \
--recursive \
--clahe --posterize \
--norm batch
python test-mogrify.py \
--dataroot /home/lens/code/pix2pix/datasets/pcfade/train/frame_00600.png \
--experiment medframe \
--name pcfade \
--loadSize 256 \
--fineSize 256 \
--how_many 200 \
--model test \
--which_model_netG unet_256 \
--which_direction AtoB \
--dataset_mode aligned \
--recursive \
--clahe --posterize \
--norm batch
python test-mogrify.py \
--dataroot /home/lens/code/pix2pix/datasets/pcfade/train/frame_01200.png \
--experiment liteframe \
--name pcfade \
--loadSize 256 \
--fineSize 256 \
--how_many 200 \
--model test \
--which_model_netG unet_256 \
--which_direction AtoB \
--dataset_mode aligned \
--recursive \
--clahe --posterize \
--norm batch
|