Skip to content

Instantly share code, notes, and snippets.

View lmassaron's full-sized avatar
🦉
Frustra fit per plura quod potest fieri per pauciora

Luca Massaron lmassaron

🦉
Frustra fit per plura quod potest fieri per pauciora
View GitHub Profile
@lmassaron
lmassaron / ResNeXt_gan.py
Created August 8, 2019 15:01 — forked from mjdietzx/ResNeXt_gan.py
Keras/tensorflow implementation of GAN architecture where generator and discriminator networks are ResNeXt.
from keras import layers
from keras import models
import tensorflow as tf
#
# generator input params
#
rand_dim = (1, 1, 2048) # dimension of the generator's input tensor (gaussian noise)