(self, x)
| 11 | self.relu = nn.ReLU(inplace=True) |
| 12 | |
| 13 | def forward(self, x): |
| 14 | return self.conv2(self.relu(self.conv1(x))) |
| 15 | |
| 16 | class FlowHead_cnn(nn.Module): |
| 17 | def __init__(self, input_dim=128, hidden_dim=256): |
nothing calls this directly
no outgoing calls
no test coverage detected