Skip to main content
Best practices
0 votes
0 replies
39 views

I am training WGAN-GP on Eurosat dataset, splitted into train/val/test sets in counts 18900/4050/4050. Since FID scores are widely used in GANs in image generation, I based my hyperparameter search on ...
oskocak-cell's user avatar
0 votes
0 answers
45 views

I trained a CycleGAN model on Google Colab using this repository - https://github.com/junyanz/pytorch-CycleGAN-and-pix2pix The model should enhance dark images. I tested the model on my test dataset ...
rupertpurple's user avatar
Tooling
0 votes
6 replies
134 views

I have a project in university to generate a real chess image from a rendered image. I have 520 pairs of images but there is no exact match pixel to pixel; it's close to that, plus there an third ...
רום בי��ט's user avatar
0 votes
1 answer
122 views

I'm running a GAN training pipeline in Google Colab. The preprocessing scripts run without any issues: GitHub repository !python run_preprocess.py --dataset custom --train_num 500 !python ...
Anushka's user avatar
0 votes
2 answers
133 views

I'm trying to add more than one generator training step per cycle to a GAN, i.e. I want my Generator to update its parameters n times every m updates of the Discriminator, where n > m. I wrote this ...
EleDan's user avatar
  • 5
0 votes
0 answers
65 views

I’m working on a custom CTGAN-like model for tabular data, where I implemented my own _collate_fn and run_step() logic to control sampling, noise injection, and discriminator inputs. However, I ...
Leyla Elkhamlichi's user avatar
0 votes
0 answers
71 views

I have the following GAN architecture: import torch, os, torchvision import torch.nn as nn import torch.optim as optim from torchvision import transforms, datasets, utils class MappingNetwork(nn....
mchd's user avatar
  • 3,213
0 votes
0 answers
130 views

I'm a beginner in machine learning. Recently, I'm trying to use CGAN for image generation and lebelling. Currently, I'm manually doing circular padding in convolution operation as following. def ...
yx feng's user avatar
  • 21
1 vote
0 answers
61 views

I am coding a DCGAN to produce Brain MRI data, based on the BRATs 2020 dataset. As a sanity check, I am training on a SINGLE image with CONSTANT noise, to see if there are any inherent flaws in my ...
Iliasp's user avatar
  • 313
0 votes
0 answers
47 views

Having some experience in developing neural networks in Keras, I decided to write a non-standard GAN, which you can't really call as such. The point is that the discriminator is a ready-made neural ...
Freddy's user avatar
  • 1
0 votes
2 answers
684 views

I'm very new to keras and Generative Adversarial Networks (GAN). When I attempted to run this script for a simple GAN on my MacBook, I got: Traceback (most recent call last): File "~/Library/...
Henryk W's user avatar
0 votes
1 answer
92 views

I'm working on my master's thesis, which involves tracking singing poses to provide feedback on posture. Specifically, I am using pose images, such as those derived from keypoint detection models like ...
Duc Anh Ho's user avatar
1 vote
0 answers
57 views

--- project: deblur_gan experiment_desc: 11_50_fpn_stop train: # files_a: &FILES_A /datasets/my_dataset/**/*.jpg #可以使用绝对路径 #files_a: &FILES_A D:/deblur/goprol_large/**/*.png #files_a: &...
송민지's user avatar
0 votes
1 answer
47 views

I trained a DCGAN model on a dataset. Few things have been observed: Repetitive patterns in discriminator loss (d_loss = d_loss_real + d_loss_fake) and g_loss d_loss_real (discriminator loss on real ...
Jerry's user avatar
  • 420
0 votes
1 answer
95 views

I'm trying to understand the dimensions of the output of the Generator of my GAN. The dims of the result after each layer is as follows: Start: torch.Size([128, 74, 1, 1]) After block1: torch.Size([...
GrGr11's user avatar
  • 1

15 30 50 per page
1
2 3 4 5
58