Spaces:
Runtime error
Runtime error
File size: 784 Bytes
8d6cd57 d872920 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
"""
This file contains list of global parameters for the Galaxy Zoo generation app
"""
device = 'cpu'
size = 64 # generated image size
shape_label = 37 # shape of the input label
n_channels = 3 # number of color channels in image
upsample = True # if true, generated images will be upsampled
noise_dim = 512 # noise size in InfoSCC-GAN
n_basis = 6 # size of additional z vectors in InfoSCC-GAN
y_type = 'real' # type of labels in InfoSCC-GAN
dim_z = 128 # z vector size in BigGAN and cVAE
path_infoscc_gan = './galaxy-zoo-generation/models/InfoSCC-GAN/generator.pt'
path_biggan = './galaxy-zoo-generation/models/BigGAN/generator.pth'
path_cvae = './galaxy-zoo-generation/models/CVAE/generator.pth'
path_labels = './galaxy-zoo-generation/data/training_solutions_rev1.csv'
|