Commit 21467a71 authored by pangjm's avatar pangjm
Browse files

update readme

parent ba3543b3
......@@ -58,14 +58,14 @@ Results and models are available in the [Model zoo](MODEL_ZOO.md).
| | ResNet | ResNeXt | SENet | VGG |
|--------------------|:--------:|:--------:|:--------:|:--------:|
| RPN | ✓ | | ☐ | ✗ |
| Fast R-CNN | ✓ | | ☐ | ✗ |
| Faster R-CNN | ✓ | | ☐ | ✗ |
| Mask R-CNN | ✓ | | ☐ | ✗ |
| Cascade R-CNN | ✓ | | ☐ | ✗ |
| Cascade Mask R-CNN | ✓ | | ☐ | ✗ |
| RPN | ✓ | | ☐ | ✗ |
| Fast R-CNN | ✓ | | ☐ | ✗ |
| Faster R-CNN | ✓ | | ☐ | ✗ |
| Mask R-CNN | ✓ | | ☐ | ✗ |
| Cascade R-CNN | ✓ | | ☐ | ✗ |
| Cascade Mask R-CNN | ✓ | | ☐ | ✗ |
| SSD | ✗ | ✗ | ✗ | ☐ |
| RetinaNet | ✓ | | ☐ | ✗ |
| RetinaNet | ✓ | | ☐ | ✗ |
## Installation
......
......@@ -86,7 +86,11 @@ class Bottleneck(nn.Module):
self.conv1_stride = stride
self.conv2_stride = 1
self.conv1 = nn.Conv2d(
inplanes, planes, kernel_size=1, stride=self.conv1_stride, bias=False)
inplanes,
planes,
kernel_size=1,
stride=self.conv1_stride,
bias=False)
self.conv2 = nn.Conv2d(
planes,
planes,
......
import math
import torch.nn as nn
import torch.utils.checkpoint as cp
from .resnet import ResNet
from .resnet import Bottleneck as _Bottleneck
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment