small fix, number of channels added when calculating the number of parameters
These lines changed, so the calculation is now correct
width, height = (32, 32) channel=3 n_hidden_neurons = 100 n_bias = 100 n_input_items = width * height n_parameters = (n_input_items * n_hidden_neurons * channel) + n_bias n_parameters