About 169,000 results
Open links in new tab
  1. Variational autoencoder - Wikipedia

    A variational autoencoder is a generative model with a prior and noise distribution respectively. Usually such models are trained using the expectation-maximization meta-algorithm (e.g. …

  2. Variational AutoEncoders - GeeksforGeeks

    Mar 4, 2025 · Variational Autoencoders (VAEs) are generative models in machine learning (ML) that create new data similar to the input they are trained on. Along with data generation they …

  3. What is Variational Autoencoder Architecture? A Full Guide

    Apr 5, 2025 · Explore Variational Autoencoder (VAE) architecture, covering its components, training, mathematical foundations, and applications in Generative AI.

  4. Implementing Variational Autoencoders from scratch - Medium

    Apr 25, 2023 · In this article we will be implementing variational autoencoders from scratch, in python. Autoencoder is a neural architecture that consists of two parts: encoder and decoder.

  5. Train Variational Autoencoder (VAE) to Generate Images

    This example shows how to train a deep learning variational autoencoder (VAE) to generate images. To generate data that strongly represents observations in a collection of data, you can …

  6. 8 Representation Learning (Autoencoders) – 6.390 - Intro to …

    Formally, an autoencoder consists of two functions, a vector-valued encoder g: R d → R k that deterministically maps the data to the representation space a ∈ R k, and a decoder h: R k → R …

  7. 2 Variational Autoencoders (VAEs) - Image Generation Models

    In the following sections, we will explain the architecture and training of autoencoders, before moving on to more advanced variants like Variational Autoencoders. Let’s examine the core …

  8. variational autoencoder (VAE). The parameters of both the encoder and decoder networks are updated using a single pass of ordinary backprop. The reconstruction term corresponds to …

  9. The structure of a variational autoencoder. | Download Scientific Diagram

    Download scientific diagram | The structure of a variational autoencoder. from publication: Factor Analysis, Probabilistic Principal Component Analysis, Variational Inference, and Variational ...

  10. [Hands-On] Understanding and Implementing Variational

    Nov 22, 2024 · In this article, we directly implemented a Variational Autoencoder (VAE) and explored how a VAE encodes and decodes handwritten digit images using the MNIST dataset …