MCPcopy Create free account
hub / github.com/IntelligentSystemsLab/ST-EVCDP / forward

Method forward

models.py:71–77  ·  view source on GitHub ↗
(self, x)

Source from the content-addressed store, hash-verified

69 self.relu = nn.ReLU()
70
71 def forward(self, x):
72 x = self.l1(x)
73 x = self.relu(x)
74 x = self.l2(x)
75 x = self.relu(x)
76 x = self.l3(x)
77 return x
78
79
80class PAG(nn.Module):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected