视频理解 PySlowFast 模型

 

 

这个是我训练的模型, HERE。 Base on UCF101.

 


    def forward(self, input):
        fast, lateral = self.FastPath(input[:, :, ::2, :, :])
        slow = self.SlowPath(input[:, :, ::16, :, :], lateral)
        x = torch.cat([slow, fast], dim=1)
        x = self.dp(x)
        x = self.fc(x)
        return x

 

视频理解 PySlowFast 模型_第1张图片

 

 

你可能感兴趣的:(Deep,Learning)