(self, x)
| 154 | self.net = nn.Sequential(*stacks) # Visual Temporal Network V-TCN |
| 155 | |
| 156 | def forward(self, x): |
| 157 | out = self.net(x) |
| 158 | return out |
| 159 | |
| 160 | class visualConv1D(nn.Module): |
| 161 | def __init__(self): |
nothing calls this directly
no outgoing calls
no test coverage detected