*https://www.coursera.org/learn/build-basic-generative-adversarial-networks-gans/programming/aFndv/conditional-gan/lab?path=%2Fnotebooks%2FC1W4A_Build_a_Conditional_GAN.ipynb
The docstring of this function
def get_input_dimensions(z_dim, mnist_shape, n_classes):
'''
Function for getting the size of the conditional input dimensions
from z_dim, the image shape, and number of classes.
Parameters:
z_dim: the dimension of the noise vector, a scalar
mnist_shape: the shape of each MNIST image as (C, W, H), which is (1, 28, 28)
n_classes: the total number of classes in the dataset, an integer scalar
(10 for MNIST)
Returns:
generator_input_dim: the input dimensionality of the conditional generator,
which takes the noise and class vectors
discriminator_im_chan: the number of input channels to the discriminator
(e.g. C x 28 x 28 for MNIST)
states the discriminator_im_channel as above.
However the following unit test
def test_input_dims():
gen_dim, disc_dim = get_input_dimensions(23, (12, 23, 52), 9)
assert gen_dim == 32
assert disc_dim == 21
test_input_dims()
regarding disc_dim doesn’t seem to match that. Specifically in the test mnist_shape = (12,23,52) so CxWxH should be 12x23x52 but the test is looking for 21 as in
assert disc_dim == 21.
Am I missing something?