在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
开源软件名称:timsainb/tensorflow2-generative-models开源软件地址:https://github.com/timsainb/tensorflow2-generative-models开源编程语言:Jupyter Notebook 100.0%开源软件介绍:Generative models in Tensorflow 2Tim Sainburg (PhD Candidate, UCSD, Gentner Laboratory) This is a small project to implement a number of generative models in Tensorflow 2. Layers and optimizers use Keras. The models are implemented for two datasets: fashion MNIST, and NSYNTH. Networks were written with the goal of being as simple and consistent as possible while still being readable. Because each network is self contained within the notebook, they should be easily run in a colab session. Included models:Autoencoder (AE)A simple autoencoder network. article)Variational Autoencoder (VAE) (The original variational autoencoder network, using tensorflow_probability article)Generative Adversarial Network (GAN) (GANs are a form of neural network in which two sub-networks (the encoder and decoder) are trained on opposing loss functions: an encoder that is trained to produce data which is indiscernable from the true data, and a decoder that is trained to discriminate between the data and generated data. article)Wasserstein GAN with Gradient Penalty (WGAN-GP) (WGAN-GP is a GAN that improves over the original loss function to improve training stability. article)VAE-GAN (VAE-GAN combines the VAE and GAN to autoencode over a latent representation of data in the generator to improve over the pixelwise error function used in autoencoders. article)Generative adversarial interpolative autoencoder (GAIA) (GAIA is an autoencoder trained to learn convex latent representations by adversarially training on interpolations in latent space projections of real data. This is an experimental modification of the original algorithm. For the original algorithm, see here: https://github.com/timsainb/gaia Other Notebooks:| NSYNTH: )Seq2Seq Autoencoder (without attention) (Fasion MNIST:Seq2Seq models use recurrent neural network cells (like LSTMs) to better capture sequential organization in data. This implementation uses Convolutional Layers as input to the LSTM cells, and a single Bidirectional LSTM layer. Spectrogramming, Mel Scaling, MFCCs, and Inversion in TensorflowTensorflow has a signal processing package that allows us to generate spectrograms from waveforms as part of our dataset iterator, rather than pregenerating a second spectrogram dataset. This notebook can serve as a reference for how this is done. Spectrogram inversion is done using the Griffin-Lim algorithm. Iterator for NSynthThe NSYNTH dataset is a set of thousands of musical notes saved as waveforms. To input these into a Seq2Seq model as spectrograms, I wrote a small dataset class that converts to spectrogram in tensorflow (using the code from the spectrogramming notebook). |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论