(self, z)
| 115 | )) |
| 116 | |
| 117 | def forward(self, z): |
| 118 | x = z |
| 119 | hiddens = [] |
| 120 | |
| 121 | for layer in self.layers: |
| 122 | x = layer(x) |
| 123 | hiddens.append(x) |
| 124 | x = torch.cat((x, z)) |
| 125 | |
| 126 | return tuple(hiddens) |
| 127 | |
| 128 | # wrapper |
| 129 |
nothing calls this directly
no outgoing calls
no test coverage detected