-
Notifications
You must be signed in to change notification settings - Fork 39
/
train_DAT_2_x2.yml
106 lines (92 loc) · 1.82 KB
/
train_DAT_2_x2.yml
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
# general settings
name: train_DAT_2_x2
model_type: DATModel
scale: 2
num_gpu: auto
manual_seed: 10
# dataset and data loader settings
datasets:
train:
task: SR
name: DF2K
type: PairedImageDataset
dataroot_gt: datasets/DF2K/HR
dataroot_lq: datasets/DF2K/LR_bicubic/X2
filename_tmpl: '{}x2'
io_backend:
type: disk
gt_size: 128
use_hflip: True
use_rot: True
# data loader
use_shuffle: True
num_worker_per_gpu: 12
batch_size_per_gpu: 8
dataset_enlarge_ratio: 1
prefetch_mode: ~
val:
task: SR
name: Set5
type: PairedImageDataset
dataroot_gt: datasets/benchmark/Set5/HR
dataroot_lq: datasets/benchmark/Set5/LR_bicubic/X2
filename_tmpl: '{}x2'
io_backend:
type: disk
# network structures
network_g:
type: DAT
upscale: 2
in_chans: 3
img_size: 64
img_range: 1.
split_size: [8,32]
depth: [6,6,6,6,6,6]
embed_dim: 180
num_heads: [6,6,6,6,6,6]
expansion_factor: 2
resi_connection: '1conv'
# path
path:
pretrain_network_g: ~
strict_load_g: True
resume_state: ~
# training settings
train:
optim_g:
type: Adam
lr: !!float 2e-4
weight_decay: 0
betas: [0.9, 0.99]
scheduler:
type: MultiStepLR
milestones: [250000, 400000, 450000, 475000]
gamma: 0.5
total_iter: 500000
warmup_iter: -1 # no warm up
# losses
pixel_opt:
type: L1Loss
loss_weight: 1.0
reduction: mean
# validation settings
val:
val_freq: !!float 5e3
save_img: False
metrics:
psnr: # metric name, can be arbitrary
type: calculate_psnr
crop_border: 2
test_y_channel: True
# logging settings
logger:
print_freq: 200
save_checkpoint_freq: !!float 5e3
use_tb_logger: True
wandb:
project: ~
resume_id: ~
# dist training settings
dist_params:
backend: nccl
port: 29500