Skip to main content
0 votes
1 answer
81 views

I am still new to GANs and trying to implement the One to Many CGAN, on the MNIST Dataset, to generate a sequence of images (with the number of output images equal to the number of generators) from a ...
Long Trần's user avatar
1 vote
0 answers
31 views

I am building a conditional GAN for time series forecasting. My dataset consists of multivariate time series data, including historical gold prices and historical USD prices as features. My goal is to ...
Mouna Ahmen's user avatar
1 vote
1 answer
362 views

I'm using TensorFlow's pix2pix: Image-to-image translation with a conditional GAN notebook to train a model for my dataset that consists of multispectral satellite images with 12 bands like 512 x 512 ...
Naser.Sadeghi's user avatar
0 votes
1 answer
78 views

I'm creating a cGAN model network for a project yet run into the error (the code will be at the bottom): Exception has occurred: ValueError Exception encountered when calling layer 'sequential' (type ...
Ender's user avatar
  • 1
1 vote
0 answers
183 views

I am trying to implement CGAN with convolutions. I have written a discriminator. The code is running but I am not sure if it is correct or not. Below is my code import torch import torch.nn as nn ...
odbhut.shei.chhele's user avatar
0 votes
1 answer
185 views

import numpy as np import pandas as pd import matplotlib.pyplot as plt import seaborn as sns from sklearn import preprocessing from sklearn.preprocessing import StandardScaler from sklearn.metrics ...
Shrija Sheth's user avatar
0 votes
0 answers
192 views

I'm a little confused, I applied an existing code to the cgan and then plotted a plot diagram for the loss. It showed me three vector values ​​of loss for the generator while the discriminant took ...
Lolo's user avatar
  • 1
1 vote
0 answers
55 views

This is original github source: https://github.com/otepencelik/GAN-Artwork-Generation I want to rerun this model and use it another area (CGAN). I want to change the network to generate multiple label ...
Jackie J's user avatar
0 votes
1 answer
168 views

class Generator(nn.Module): def init(self): # defines an init function which is used to initialize all the required variables super(Generator, self).init() self.label_emb = nn.Embedding(opt....
Tithi Paul's user avatar
1 vote
0 answers
94 views

I'm trying to make a model for outputing an image based on speed (a float input). This can for example range from 1.0 to 6.0. so basically it is an cGAN, with a latent noise and a float as combined ...
icarus.z's user avatar
0 votes
0 answers
200 views

Question HI, I am implementing CGAN in TensorFlow. Please help me understand the cause of the error and how to resolve it. Code def train(dataset, epochs): for epoch in range(epochs): start = ...
Sumera Rounaq's user avatar