sysuzyq

Results 3 comments of sysuzyq

https://github.com/ericsujw/InstColorization/blob/master/models/fusion_model.py#L108 ``` GF_state_dict_temp ={} for k,v in GF_state_dict.items(): if k.startswith('module'): GF_state_dict_temp[k[7:]] = v else: GF_state_dict_temp[k] = v GF_state_dict = GF_state_dict_temp G_state_dict_temp ={} for k,v in G_state_dict.items(): if k.startswith('module'): G_state_dict_temp[k[7:]] =...

https://github.com/ericsujw/InstColorization/blob/master/models/fusion_model.py#L108 ``` GF_state_dict_temp ={} for k,v in GF_state_dict.items(): if k.startswith('module'): GF_state_dict_temp[k[7:]] = v else: GF_state_dict_temp[k] = v GF_state_dict = GF_state_dict_temp G_state_dict_temp ={} for k,v in G_state_dict.items(): if k.startswith('module'): G_state_dict_temp[k[7:]] =...

@ICTwangbiao thanks for your reply, but it confuses me. when i use the equation " h_o = (h_i + 2 * pad_h - kernel_h) / stride_h +1 " to calculate...