MCPcopy Create free account
hub / github.com/drinkingcoder/NeuralMarker / forward

Method forward

core/update.py:23–24  ·  view source on GitHub ↗
(self, x)

Source from the content-addressed store, hash-verified

21 self.relu = nn.ReLU(inplace=True)
22
23 def forward(self, x):
24 return self.conv2(self.relu(self.conv1(x)))
25
26class ConvGRU(nn.Module):
27 def __init__(self, hidden_dim=128, input_dim=192+128):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected