MCPcopy Create free account
hub / github.com/PKU-ASAL/Simulated-Data / forward

Method forward

src/ETW/model.py:33–37  ·  view source on GitHub ↗
(self,z)

Source from the content-addressed store, hash-verified

31 self.linear3 = nn.Linear(128,256)
32
33 def forward(self,z):
34 z = F.relu(self.linear1(z))
35 z = F.relu(self.linear2(z))
36 z = self.linear3(z)
37 return z
38
39class VariationalAutoencoder(nn.Module):
40 def __init__(self, latent_dims):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected