← back to Handbag Authentication

handbag_data/github_datasets/iGAN/model_def/dcgan_theano_config.py

39 lines

def outdoor_64():
    n_layers = 3  # number of layers
    n_f = 128  # number of feature channels
    npx = 64  # height = width
    nc = 3  # number of image channels
    return npx, n_layers, n_f, nc


def shoes_64():
    n_layers = 3
    n_f = 128
    npx = 64
    nc = 3
    return npx, n_layers, n_f, nc


def handbag_64():
    n_layers = 3
    n_f = 128
    npx = 64
    nc = 3
    return npx, n_layers, n_f, nc


def church_64():
    n_layers = 3
    n_f = 128
    npx = 64
    nc = 3
    return npx, n_layers, n_f, nc


def hed_shoes_64():
    n_layers = 3
    n_f = 128
    npx = 64
    nc = 1
    return npx, n_layers, n_f, nc