(self, mu, logstd)
| 187 | |
| 188 | |
| 189 | def reparameterize(self, mu, logstd): |
| 190 | std = torch.exp(logstd) |
| 191 | eps = torch.randn_like(std) |
| 192 | return mu + eps * std |
| 193 | |
| 194 | def forward_conv(self, obs,flatten=True): |
| 195 | if obs.max() > 1.: |
nothing calls this directly
no outgoing calls
no test coverage detected