Spaces:
Build error
Build error
File size: 2,708 Bytes
ad250d1 d7939cf ad250d1 |
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 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 |
#### general settings
name: train_rebuttal_smallNet_ch32_blocks1
use_tb_logger: true
model: LLFlow
distortion: sr
scale: 1
gpu_ids: [0]
dataset: LoL
optimize_all_z: false
cond_encoder: ConEncoder1
train_gt_ratio: 0.2
avg_color_map: false
concat_histeq: true
histeq_as_input: false
concat_color_map: false
gray_map: false # concat 1-input.mean(dim=1) to the input
align_condition_feature: false
align_weight: 0.001
align_maxpool: true
to_yuv: false
encode_color_map: false
le_curve: false
# sigmoid_output: true
#### datasets
datasets:
train:
root: D:\LOLdataset
quant: 32
use_shuffle: true
n_workers: 1 # per GPU
batch_size: 16
use_flip: true
color: RGB
use_crop: true
GT_size: 160 # 192
noise_prob: 0
noise_level: 5
log_low: true
gamma_aug: false
val:
root: D:\LOLdataset
n_workers: 1
quant: 32
n_max: 20
batch_size: 1 # must be 1
log_low: true
#### Test Settings
# dataroot_GT: D:\LOLdataset\eval15\high
# dataroot_LR: D:\LOLdataset\eval15\low
dataroot_unpaired: models/llflow/dataset_samples/our485/low
# dataroot_unpaired: /home/data/Dataset/LOL_test/Fusion
dataroot_GT: D:\Dataset\LOL-v2\LOL-v2\IntegratedTest\Test\high
dataroot_LR: D:\Dataset\LOL-v2\LOL-v2\IntegratedTest\Test\low
model_path: E:\startup\image_enhancement\models\llflow\LOL_smallNet.pth
heat: 0 # This is the standard deviation of the latent vectors
#### network structures
network_G:
which_model_G: LLFlow
in_nc: 3
out_nc: 3
nf: 32
nb: 4 # 12 for our low light encoder, 23 for LLFlow
train_RRDB: false
train_RRDB_delay: 0.5
flow:
K: 4 # 24.49 psnr用的12 # 16
L: 3 # 4
noInitialInj: true
coupling: CondAffineSeparatedAndCond
additionalFlowNoAffine: 2
conditionInFeaDim: 64
split:
enable: false
fea_up0: true
stackRRDB:
blocks: [1]
concat: true
#### path
path:
# pretrain_model_G: ../pretrained_models/RRDB_DF2K_8X.pth
strict_load: true
resume_state: auto
#### training settings: learning rate scheme, loss
train:
manual_seed: 10
lr_G: !!float 5e-4 # normalizing flow 5e-4; l1 loss train 5e-5
weight_decay_G: 0 # 1e-5 # 5e-5 # 1e-5
beta1: 0.9
beta2: 0.99
lr_scheme: MultiStepLR
warmup_iter: -1 # no warm up
lr_steps_rel: [ 0.5, 0.75, 0.9, 0.95 ] # [0.2, 0.35, 0.5, 0.65, 0.8, 0.95] # [ 0.5, 0.75, 0.9, 0.95 ]
lr_gamma: 0.5
weight_l1: 0
# flow_warm_up_iter: -1
weight_fl: 1
niter: 45000 #200000
val_freq: 200 # 200
#### validation settings
val:
# heats: [ 0.0, 0.5, 0.75, 1.0 ]
n_sample: 4
test:
heats: [ 0.0, 0.7, 0.8, 0.9 ]
#### logger
logger:
# Debug print_freq: 100
print_freq: 100
save_checkpoint_freq: !!float 1e3
|