context_encoder_pytorch icon indicating copy to clipboard operation
context_encoder_pytorch copied to clipboard

PyTorch Implement of Context Encoders: Feature Learning by Inpainting

Results 17 context_encoder_pytorch issues
Sort by recently updated
recently updated
newest added

你好,请问你的邮箱为何无法投递邮件呢?不知还有别的联系方式吗?想请教几个问题

Hi, just want to know if I can use the already generated random mask images for training (instead of the center-cropped images) It seems that you have hard encoded the...

in your code, I find that the defined criterionMSE is not used. the errD (BCE Loss) is computed by errD_fake = criterion(output, label). but for the errG_l2 (MSE loss) you...

I think the size of real_center should be [64,3,64,64],but after ran it,I noticed that the size is [64,3,128,128]

some parameter is set as follow: parser.add_argument('--wtl2',type=float,default=0.998,help='0 means do not use else use with this weight') parser.add_argument('--wtlD',type=float,default=0.001,help='0 means do not use else use with this weight') but i find wtLD...

I try to run test_one.py but failed at real_center = torch.FloatTensor(1, 3, opt.imageSize/2, opt.imageSize/2) with the error: ypeError: torch.FloatTensor constructor received an invalid combination of arguments - got (int, int,...