chainer-gan-lib
chainer-gan-lib copied to clipboard
Chainer implementation of recent GAN variants
Fixes #13 Let me know what you think.
I am not able to run training with progressive gan code. After installing chainer from source according to instructions [here](https://docs.chainer.org/en/stable/install.html) and following the instructions for installation in this repo, I...
I figure `self.inv_c = np.sqrt(2.0/(in_ch))` should be ` self.inv_c = np.sqrt(2.0/(in_ch*ksize**2))` like EqualizedConv2d layer. What do you think? :0 original code: ~~~ class EqualizedDeconv2d(chainer.Chain): def __init__(self, in_ch, out_ch, ksize, stride,...
I look from introduction there is not implement in recently CycleGAN, DiscoGAN, DualGAN, Can support implement for them?
Bumps [tensorflow](https://github.com/tensorflow/tensorflow) from 1.2.0 to 2.11.1. Release notes Sourced from tensorflow's releases. TensorFlow 2.11.1 Release 2.11.1 Note: TensorFlow 2.10 was the last TensorFlow release that supported GPU on native-Windows. Starting...