Output of AutoencoderKL encoding method. Args: latent_dist (`FlaxDiagonalGaussianDistribution`): Encoded outputs of `Encoder` represented as the mean and logvar of `FlaxDiagonalGaussianDistribution`. `FlaxDiagonalGaussianDistribution` allows for sampling lat
| 48 | |
| 49 | @flax.struct.dataclass |
| 50 | class FlaxAutoencoderKLOutput(BaseOutput): |
| 51 | """ |
| 52 | Output of AutoencoderKL encoding method. |
| 53 | |
| 54 | Args: |
| 55 | latent_dist (`FlaxDiagonalGaussianDistribution`): |
| 56 | Encoded outputs of `Encoder` represented as the mean and logvar of `FlaxDiagonalGaussianDistribution`. |
| 57 | `FlaxDiagonalGaussianDistribution` allows for sampling latents from the distribution. |
| 58 | """ |
| 59 | |
| 60 | latent_dist: "FlaxDiagonalGaussianDistribution" |
| 61 | |
| 62 | |
| 63 | class FlaxUpsample2D(nn.Module): |
no outgoing calls
no test coverage detected
searching dependent graphs…