-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathparameter.py
More file actions
22 lines (17 loc) · 780 Bytes
/
parameter.py
File metadata and controls
22 lines (17 loc) · 780 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Inputfile_name = 'Marm.bin'
Inputfile_path = './data/'
fwi_model_path = './data/deterministic_fwi_result.npy'
num_particles = 50
nepoch = 100
nz = 221
nx = 601
num_dims = 2
weight_decay = 0
learning_rate = 0.005 # learning rate of pretraining
pretrain_num_iter = 2000 # number of iteration for pretraining
dip_pretrain_loss = 'L1' # loss type for pretraining
OPTIMIZER = 'adam' # optimizer
k_channels = 128 # number of channels of input
dip_pretrain_loss = 'L1' # loss type for pretraining
cnnmodel_path ='./Pretrained-network/Dip_pretrain_small_model_iter'
Figurepath = './Conditional-Unet-output/'