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

Method __init__

src/Sysdig/model.py:67–70  ·  view source on GitHub ↗
(self, latent_dims)

Source from the content-addressed store, hash-verified

65
66class VariationalAutoencoder(nn.Module):
67 def __init__(self, latent_dims):
68 super(VariationalAutoencoder,self).__init__()
69 self.encoder = VariationalEncoder(latent_dims)
70 self.decoder = Decoder(latent_dims)
71
72 def forward(self,x):
73 z = self.encoder(x)

Callers

nothing calls this directly

Calls 3

VariationalEncoderClass · 0.70
DecoderClass · 0.70
__init__Method · 0.45

Tested by

no test coverage detected