4uiiurz1 / pytorch-deform-conv-v2

PyTorch implementation of Deformable ConvNets v2 (Modulated Deformable Convolution)
MIT License
743 stars 141 forks source link

Some questions about the network structure #14

Open cloudtom opened 4 years ago

cloudtom commented 4 years ago

Why there is only one down sampling(MaxPool2d after the first layer of conv2d) in your network structure? Can you tell me the reason for designing the network like this? Why not add MaxPool2d after the each layer of conv2d to reduce parameters. If the original image parameters(size) are large, the RAM may not enough for training. What can I do if there are too many parameters?