alibaba-mmai-research/TAdaConv

Applying TAdaConv3d to Timesformer

Opened this issue · 2 comments

Thanks for your great work!
Could you tell me how to apply tadaconv3d to my own timesformer?

Hi, sorry for the delayed reply.

You can check out our latest work to see if it helps you :). The link is here: https://arxiv.org/pdf/2308.05787.pdf. We have released the code for TAdaFormer and you can try incorporating that into your timesformer.

Hello, if I want to replace a 3DCNN, for example: nn.Conv3d(in_channels=64, out_channels=64, kernel_size=(3, 3, 3), stride=1, padding=(1, 1, 1))can you give a replacement code example? I looked at the 2D example in the Guidelines, but I didn't understand it.