You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
output of 5-th convolutional layer of ResNet152 trained on ImageNet dataset. That output of shape (19, 24, 2048) is then max-pooled to a shape (2048,). Features are taken from original images downloaded in jpeg format with a fixed width of 600px. Practically, it is a list of floats with len = 2048
But should we max-pool that tensor instead of saving the original (19, 24, 2048)? And if we really want just 2048, wouldn't it be better just to use ResNet101, which outputs tensors of this shape? (TODO: double-check whether it's true)
The text was updated successfully, but these errors were encountered:
So now we have it calculated as following:
But should we max-pool that tensor instead of saving the original (19, 24, 2048)? And if we really want just 2048, wouldn't it be better just to use ResNet101, which outputs tensors of this shape? (TODO: double-check whether it's true)
The text was updated successfully, but these errors were encountered: