awesome-repositories.com
Blog
MCP
awesome-repositories.com

Discover the best open-source repositories with AI-powered search.

ExploreCurated searchesOpen-source alternativesSelf-hosted softwareBlogSitemap
ProjectMCP serverAboutHow we rankPress
LegalPrivacyTerms
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
hwalsuklee avatar

hwalsuklee/tensorflow-generative-model-collections

0
View on GitHub↗
3,922 stars·838 forks·Python·Apache-2.0·17 views

Tensorflow Generative Model Collections

This is a library of generative model architectures built using the TensorFlow framework. It provides implementations for producing synthetic data and realistic images, specifically focusing on Variational Autoencoders and various Generative Adversarial Network variants.

The collection includes specific GAN architectures such as WGAN-GP, LSGAN, InfoGAN, and EBGAN. It also features Variational Autoencoders designed to learn latent representations and synthesize new samples from learned distributions.

The project covers image processing pipelines for normalizing and cropping data, as well as a toolkit of neural network layers including 2D convolutions and linear transformations. It provides capabilities for latent space manipulation, conditioning vector injection, and model stabilization through specific loss functions.

Features

  • TensorFlow Model Definitions - Constructs generative model architectures using the TensorFlow framework to define computational graphs and layers.
  • Generative Adversarial Networks - Provides a comprehensive set of Generative Adversarial Network architectures to produce synthetic data from noise vectors.
  • Wasserstein GAN Setups - Implements Wasserstein GAN architectures using distance-based loss to improve training stability.
  • Conditional Generative Modeling - Implements conditional generative modeling by merging external information into the generation process.
  • Latent Space Sampling - Generates synthetic data priors by sampling from Gaussian or Uniform distributions within the latent space.
  • EBGAN Implementations - Implements an Embedding GAN (EBGAN) architecture with an auto-encoder style discriminator.
  • WGAN-GP Implementations - Implements the WGAN-GP model to produce realistic images with improved training stability.
  • Synthetic Image Generators - Utilizes neural networks and image processing pipelines to create realistic artificial imagery.
  • TensorFlow Model Development - Builds a collection of deep learning architectures for synthetic data generation specifically using the TensorFlow framework.
  • Variational Autoencoder Pipelines - Implements a Variational Autoencoder pipeline using Gaussian latent spaces and Bernoulli distributions for data synthesis.
  • Variational Autoencoders - Implements variational autoencoder architectures using Gaussian encoders and Bernoulli decoders to synthesize new data.
  • Conditioning Vector Injection - Provides mechanisms to guide image generation by injecting conditioning vectors and labels into the model feature maps.
  • Fully Connected Layers - Implements fully connected layers for linear transformations of feature vectors.
  • Latent Space Disentanglement - Implements InfoGAN to learn disentangled representations by combining noise vectors with latent codes.
  • Latent Space Manipulations - Provides mechanisms for latent space manipulation, including the use of conditioning vectors and disentangled representations.
  • Image Discriminators - Implements discriminator networks used to evaluate the authenticity of generated images in adversarial training.
  • Least Squares GANs - Implements a Generative Adversarial Network using a least squares loss function to improve training stability and image quality.
  • Convolution Layers - Implements 2D and transposed convolutional layers for processing spatial image data.
  • Normalization Layers - Provides normalization layers to scale activations and stabilize training convergence.
  • Neural Network Layers - Provides reusable components for 2D convolutions, linear transformations, and activation normalization.
  • Training Stability Techniques - Employs normalization layers and Wasserstein GP loss functions to improve training convergence and stability.
  • Gradient Penalties - Implements gradient penalty mechanisms to stabilize discriminator training and prevent mode collapse.
  • Transposed Convolutions - Uses transposed convolutions to upsample low-dimensional latent vectors into full-resolution images.
  • Tensor Processing Pipelines - Includes a pipeline for normalizing, cropping, and grid-merging image tensors to prepare data for neural network training.
  • Generative Model Implementations - TensorFlow implementations of diverse generative models.
  • Generative Models - Generative model implementations for TensorFlow.

Star history

Star history chart for hwalsuklee/tensorflow-generative-model-collectionsStar history chart for hwalsuklee/tensorflow-generative-model-collections

How this analysis was created: This summary and feature list are AI-generated from collected project material and can contain mistakes. Stars, license and language are imported from GitHub. Inclusion does not mean that we have tested or audited this project. Check the source documentation for any feature you depend on. Learn more on our About page.

AI search

Explore more awesome repositories

Describe what you need in plain English — the AI ranks thousands of curated open-source projects by relevance.

Start searching with AI

Frequently asked questions

What does hwalsuklee/tensorflow-generative-model-collections do?

This is a library of generative model architectures built using the TensorFlow framework. It provides implementations for producing synthetic data and realistic images, specifically focusing on Variational Autoencoders and various Generative Adversarial Network variants.

What are the main features of hwalsuklee/tensorflow-generative-model-collections?

The main features of hwalsuklee/tensorflow-generative-model-collections are: TensorFlow Model Definitions, Generative Adversarial Networks, Wasserstein GAN Setups, Conditional Generative Modeling, Latent Space Sampling, EBGAN Implementations, WGAN-GP Implementations, Synthetic Image Generators.

Which projects share features with hwalsuklee/tensorflow-generative-model-collections?

Projects with overlapping indexed features include: morvanzhou/tensorflow-tutorial — This project is a collection of educational resources and reference implementations for neural network development… glouppe/info8010-deep-learning — This project provides a comprehensive educational curriculum and research resource for deep learning, focusing on the… d2l-ai/d2l-en — This project is an educational platform and research toolkit designed to teach deep learning through a combination of… junyanz/igan — iGAN is a framework for producing synthetic images using generative adversarial networks. It provides a web-based… tingsongyu/pytorch_tutorial — This project is a comprehensive collection of educational examples and reference implementations for building vision… christianversloot/machine-learning-articles — This project is a machine learning educational archive and technical documentation collection. It serves as a deep…

Projects sharing features with Tensorflow Generative Model Collections

These projects share indexed features with Tensorflow Generative Model Collections. Shared tags can include platform or build tooling; verify the primary use case before treating a result as a replacement.
  • morvanzhou/tensorflow-tutorialMorvanZhou avatar

    MorvanZhou/Tensorflow-Tutorial

    4,334View on GitHub↗

    This project is a collection of educational resources and reference implementations for neural network development using TensorFlow. It serves as a comprehensive learning course, machine learning curriculum, and practical implementation guide for building deep learning architectures. The codebase provides instructional materials and examples covering a wide range of model types, including convolutional neural networks for image classification, recurrent networks and long short-term memory cells for sequential data, and autoencoders for generative modeling. It also includes implementations for

    Pythonautoencoderclassificationcnn
    View on GitHub↗4,334
  • glouppe/info8010-deep-learningglouppe avatar

    glouppe/info8010-deep-learning

    1,291View on GitHub↗

    This project provides a comprehensive educational curriculum and research resource for deep learning, focusing on the theoretical and technical foundations of neural network implementation. It serves as a structured academic guide for building and training complex models from scratch, covering the essential mathematical primitives, computational graph construction, and automatic differentiation mechanisms required for modern machine learning. The repository distinguishes itself through its extensive coverage of generative modeling and specialized neural architectures. It includes practical im

    Jupyter Notebook
    View on GitHub↗1,291
  • d2l-ai/d2l-end2l-ai avatar

    d2l-ai/d2l-en

    29,001View on GitHub↗

    This project is an educational platform and research toolkit designed to teach deep learning through a combination of mathematical theory, visual diagrams, and executable code. It provides a comprehensive environment for building, training, and evaluating neural networks, grounding complex concepts in interactive computational notebooks that allow for hands-on experimentation. The framework distinguishes itself by interleaving theoretical foundations—including linear algebra, calculus, and probability—with practical implementations across multiple industry-standard libraries. It supports flex

    Pythonbookcomputer-visiondata-science
    View on GitHub↗29,001
  • junyanz/iganjunyanz avatar

    junyanz/iGAN

    4,007View on GitHub↗

    iGAN is a framework for producing synthetic images using generative adversarial networks. It provides a web-based interface for interactively creating and editing imagery across categories such as landscapes, architecture, and fashion using pre-trained models. The system enables precise control over visual output through latent space exploration, interpolation, and projection. Users can guide the generative process using an interactive editor featuring sketching, coloring, and warping brushes to refine specific regions or shapes in real-time. The project supports both automated scripted gene

    Python
    View on GitHub↗4,007
Compare all 30 related projects→