Code QuizIntermediate

Counting Conv Layer Parameters

Find the omitted term in this convolution parameter count.

Codepython
# nn.Conv2d(in_channels=3, out_channels=16, kernel_size=3)
# total learnable parameters?
params = 3 * 16 * 3 * 3

What is the bug in this parameter count?