guxinqian / AP3D

Pytorch implementation of "Appearance-Preserving 3D Convolution for Video-based Person Re-identification"
Apache License 2.0
97 stars 24 forks source link

Effect of inflate_* functions #12

Closed InnovArul closed 3 years ago

InnovArul commented 3 years ago

I require a small clarification on my understanding of inflate_ functions. If timedim = 1, the inflate functions still behave like 2D functions. i.e., inflate_conv will make the conv2d layer to conv3d layer, but still behave like conv2d layer, since time_dim=1. Is that correct?

Or Is there any other advantage in inflate_* functions?

Thanks in advance!

guxinqian commented 3 years ago

Yes, it is.

InnovArul commented 3 years ago

thanks!