Skip to content

small fix, number of channels added when calculating the number of parameters

Laszlo Dobson requested to merge dobson/deep-learning-intro:main into main

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

Merge request reports