RevCol
RevCol copied to clipboard
Official Code of Paper "Reversible Column Networks" "RevColv2"
The source code reads: self.down = nn.Sequential( nn.Conv2d(channels[level-1], channels[level], kernel_size=2, stride=2), LayerNorm(channels[level], eps=1e-6, data_format="channels_first"), ) if level in [1, 2, 3] else nn.Identity() So when level=0 and first_col=True, how do...
We are trying to convert Revcol to `TensorRT` format, but when converting to `ONNX`, we found that when using `save_memory=True`, the conversion does not work properly. Here is our conversion...
When will RevColv2 be released ?
Thank you so much great work. I would like to use the RevCol segmentation model with Huggingface. However, I could not figure out how to use it. I tried to...
Hi, I saw the result from your original paper, announcing the mAP of 63.8% on COCO minival set. Could you please release that model in this codebase? Thanks a lot!
您的论文非常好,我想知道您这个论文内容的源代码是在哪里呢