Any plan to support 3d upsampling or any other alternatives currently?

Hi

Is there any plan to support 3d upsampling (e.g. NearestUpsampling3d) recently?
If not, is there any other “shortcut" ways to realize NearestUpsampling3d with current functions?

on the master branch, we now have F.upsample that supports both 2D and 3D inputs for nearest and bilinear modes: http://pytorch.org/docs/nn.html?highlight=upsample#torch.nn.functional.upsample

It will be part of the next release 0.2.0

So nice. Thank you for the quick reply!