MCPcopy Create free account
hub / github.com/MaureenZOU/TSAM / forward

Method forward

src/model/i3d.py:120–125  ·  view source on GitHub ↗
(self, x)

Source from the content-addressed store, hash-verified

118 self.name = name
119
120 def forward(self, x):
121 b0 = self.b0(x)
122 b1 = self.b1b(self.b1a(x))
123 b2 = self.b2b(self.b2a(x))
124 b3 = self.b3b(self.b3a(x))
125 return torch.cat([b0, b1, b2, b3], dim=1)
126
127
128class InceptionI3d(nn.Module):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected