NVlabs / eg3d

Other
3.24k stars 363 forks source link

Antialiased interpolation #26

Closed FeiiYin closed 2 years ago

FeiiYin commented 2 years ago

Thanks for providing such impressive work!

I note in the repo, all the torch.nn.functional.interpolate function use the args antialias=True. I wondered how much the setting will influence the ultimate results compared to use the normal upsample handle torch.nn.functional.interpolate(image_orig_tensor, size=(size, size), mode='bilinear', align_corners=False).

Thanks in advance!