We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2381d61 commit 0bb2e53Copy full SHA for 0bb2e53
src/lasdi/latent_space.py
@@ -66,6 +66,7 @@ def __init__(self, layer_sizes,
66
for k in range(self.n_layers-1):
67
self.fcs += [torch.nn.Linear(layer_sizes[k], layer_sizes[k + 1])]
68
self.fcs = torch.nn.ModuleList(self.fcs)
69
+ self.init_weight()
70
71
# Reshape input or output layer
72
assert((reshape_index is None) or (reshape_index in [0, -1]))
0 commit comments