Open
Description
📚 Documentation
In the documentation of PyTorch Model Zoo, it is suggested that:
H and W are expected to be at least 224.
Technically, for H/W < 224 it is also workable, but there might be some lower bound.
For example, the AlexNet model is able to consume a tensor of [3, 200, 200] but not applicable for that of [3, 62, 62].
Similar cases also apply to vgg* and densenet*. Therefore, I am wondering if it is necessary to specify the undefined behaviours of models in the documentation to help users better leverage the models. Thanks.