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

Method __init__

src/ETW/model.py:27–31  ·  view source on GitHub ↗
(self,latent_dims)

Source from the content-addressed store, hash-verified

25 return z
26class Decoder(nn.Module):
27 def __init__(self,latent_dims):
28 super(Decoder,self).__init__()
29 self.linear1 = nn.Linear(latent_dims,64)
30 self.linear2 = nn.Linear(64,128)
31 self.linear3 = nn.Linear(128,256)
32
33 def forward(self,z):
34 z = F.relu(self.linear1(z))

Callers 2

__init__Method · 0.45
__init__Method · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected