Hello can anyone help me? I am starting PyTorch and i dont know to explain this code:
the batch-size is 32
self.conv1 = nn.Conv2d(3, 64, kernel_size=3, stride=1)
self.relu1 = nn.ReLU()
self.conv2 = nn.Conv2d(64, 64, kernel_size=3, stride=1)
How many neurons has the input layer, hidden layer and the output layer? And what is the size of the hidden layer?
Everyone answer is welcome