GaitDet
GaitDet copied to clipboard
About interpolate and deconvolution
Hi @SteveSZF , I met some problem with interpolate function when I use onnx2trt convert onnx file to trt model. In aspp.py, I found interpolate function had been commented, like this
#x5 = F.interpolate(x5, size=torch.Size([32,32]), mode='nearest') #only nearest supported in only Tensorrt5.1
-
- Is there any difference about the result between comment the interpolation function before and after?
-
- And I also found you use deconvolution function. Can deconvolution convert to tensorrt model? Thank you!