-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathparams.py
More file actions
36 lines (27 loc) · 962 Bytes
/
Copy pathparams.py
File metadata and controls
36 lines (27 loc) · 962 Bytes
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
######################## PARAMETERS ##########################
original_dim = 6# # DES - 8, COSMOs - 6
#intermediate_dim3 = 1600
# intermediate_dim2 = 1024
intermediate_dim1 = 32
intermediate_dim0 = 16
intermediate_dim = 8
latent_dim = 4
num_train = 784
num_test = 128
num_para = 1
batch_size = 16
num_epochs = 10 # 20 #200 # 7500 # 200 #110 #50
epsilon_mean = 0.0 # 1.0
epsilon_std = 1.0 #1e-1 ## original = 1.0, smaller the better 1e-4
learning_rate = 1e-4
decay_rate = 1.0
noise_factor = 0.0 # 0.0 necessary
######################## I/O #################################
MainDir = './data/'
DataDir = MainDir+'Data/'
PlotsDir = MainDir+'Plots/'
ModelDir = MainDir+'Model/'
fileOut = 'P'+str(num_para)+'Model_tot' + str(num_train) + '_batch' + str(batch_size) + '_lr' + str(
learning_rate) + '_decay' + str(decay_rate) + '_z' + str(latent_dim) + '_epoch' + str(
num_epochs)
##############################################################