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

Method forward

src/model/tsm/module.py:39–42  ·  view source on GitHub ↗
(self, x, flows)

Source from the content-addressed store, hash-verified

37
38class Sequential(torch.nn.Sequential):
39 def forward(self, x, flows):
40 for module in self:
41 x = module(x, flows)
42 return x
43
44
45def interpolate(x, scale_factor=2, mode='nearest'):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected