Open sohee-zoe opened 4 years ago
Can you check if I modified the config.py appropriately?
# input and layer params
self.z_size = 128
# self.N = [128, 128, 256, 512, 1024, 2048, 2048]
self.N = [2048, 2048, 2048, 2048, 2048, 2048, 2048]
# self.gen_FC_layers = [self.z_size, self.N[0]*96]
self.gen_FC_layers = [self.z_size, self.N[0] * 32]
# self.gen_conv_layers = [96, 48, 32, 16, 8, 3, 3]
self.gen_conv_layers = [32, 32, 24, 16, 8, 3, 3]
# self.gen_fnet_layers = [[96, 1024, 96*48],[48, 768, 48*32],[32, 256, 32*16],[16, 64, 16*8],[8, 16, 8*3],[3, 6, 3*3]]
self.gen_fnet_layers = [[32, 1024, 32 * 32], [32, 768, 32 * 24], [24, 384, 24 * 16], [16, 64, 16 * 8],[8, 16, 8 * 3], [3, 6, 3 * 3]]
self.dis_SFC_layers = [3, 64, 128, 256, 512]
self.dis_FC_layers = [512, 128, 64, 1]
self.dis_convkernel_width = 1
self.signal_size = [2048, 3]
self.radius = 0.025 # max distance between neighbours
self.min_nn = [15, 15, 15, 15, 15, 15] # min no. of neighbours (<)
# self.min_nn = [20, 20, 20, 20, 20, 20] # min no. of neighbours (<)
self.upsampling = [False] + [False]*4 + [False]
self.upsamp_method = 'aggr' # 'aggr', 'gauss', 'triangle', 'perturb'
self.upsamp_aggr_method = 'diag' # 'full', 'diag', 'scalar'
self.upsamp_aggr_nn = 15
self.sigma_init = 0.1 # for perturb method
Hello. I want no upsampling. but, I have issues.
config.py
bash launch_gconv_train.sh