ZDDWLIG commited on
Commit
089412b
·
verified ·
1 Parent(s): e887bfd

Upload models/atten_unet/seed42/config.yaml with huggingface_hub

Browse files
models/atten_unet/seed42/config.yaml ADDED
@@ -0,0 +1,79 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ experiment:
2
+ name: denoise_atten_unet_base0510_seed42
3
+ output_dir: /data/shared/benchmark/multiples/results
4
+ seed: 42
5
+ device: cuda:0
6
+ data:
7
+ segy_pair:
8
+ input_path: /root/seismic-benchmark-code/data/total_nodw.sgy
9
+ target_path: /root/seismic-benchmark-code/data/multiples.sgy
10
+ traces_per_shot: 638
11
+ time_downsample: 1
12
+ shot_split:
13
+ train: 510
14
+ val: 64
15
+ test: 64
16
+ loader:
17
+ batch_size: 48
18
+ num_workers: 4
19
+ pin_memory: true
20
+ preprocess:
21
+ normalize_mode: max_abs
22
+ normalize_scope: global
23
+ patch_time: 512
24
+ patch_trace: 256
25
+ patch_overlap: 0.5
26
+ max_shots: null
27
+ model:
28
+ type: atten_unet
29
+ params:
30
+ in_channels: 1
31
+ out_channels: 1
32
+ base_channels: 32
33
+ depth: 4
34
+ loss:
35
+ type: mse
36
+ params:
37
+ reduction: mean
38
+ metrics:
39
+ - name: snr
40
+ params:
41
+ reduction: per_sample
42
+ min_signal_energy: 1.0e-08
43
+ - name: psnr
44
+ params:
45
+ data_range: 1.0
46
+ reduction: per_sample
47
+ - name: ssim
48
+ params:
49
+ data_range: 2.0
50
+ window_size: 11
51
+ sigma: 1.5
52
+ - name: mae
53
+ params: {}
54
+ - name: mse
55
+ params: {}
56
+ - name: rmse
57
+ params:
58
+ reduction: per_sample
59
+ optim:
60
+ type: adamw
61
+ params:
62
+ lr: 0.0001
63
+ weight_decay: 1.0e-05
64
+ scheduler:
65
+ type: cosine
66
+ params:
67
+ min_lr: 1.0e-06
68
+ train:
69
+ epochs: 200
70
+ grad_clip: 1.0
71
+ log_step: false
72
+ log_interval: 10
73
+ eval_interval: 1
74
+ ckpt_interval: 20
75
+ vis_interval: 5
76
+ resume: null
77
+ log:
78
+ log_dir: logs
79
+ plot_interval: 5