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). ...@@ -58,14 +58,14 @@ Results and models are available in the [Model zoo](MODEL_ZOO.md).
| | ResNet | ResNeXt | SENet | VGG | | | ResNet | ResNeXt | SENet | VGG |
|--------------------|:--------:|:--------:|:--------:|:--------:| |--------------------|:--------:|:--------:|:--------:|:--------:|
| RPN | ✓ | | ☐ | ✗ | | RPN | ✓ | | ☐ | ✗ |
| Fast R-CNN | ✓ | | ☐ | ✗ | | Fast R-CNN | ✓ | | ☐ | ✗ |
| Faster R-CNN | ✓ | | ☐ | ✗ | | Faster R-CNN | ✓ | | ☐ | ✗ |
| Mask R-CNN | ✓ | | ☐ | ✗ | | Mask R-CNN | ✓ | | ☐ | ✗ |
| Cascade R-CNN | ✓ | | ☐ | ✗ | | Cascade R-CNN | ✓ | | ☐ | ✗ |
| Cascade Mask R-CNN | ✓ | | ☐ | ✗ | | Cascade Mask R-CNN | ✓ | | ☐ | ✗ |
| SSD | ✗ | ✗ | ✗ | ☐ | | SSD | ✗ | ✗ | ✗ | ☐ |
| RetinaNet | ✓ | | ☐ | ✗ | | RetinaNet | ✓ | | ☐ | ✗ |
## Installation ## Installation
......
...@@ -86,7 +86,11 @@ class Bottleneck(nn.Module): ...@@ -86,7 +86,11 @@ class Bottleneck(nn.Module):
self.conv1_stride = stride self.conv1_stride = stride
self.conv2_stride = 1 self.conv2_stride = 1
self.conv1 = nn.Conv2d( 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( self.conv2 = nn.Conv2d(
planes, planes,
planes, planes,
......
import math import math
import torch.nn as nn import torch.nn as nn
import torch.utils.checkpoint as cp
from .resnet import ResNet from .resnet import ResNet
from .resnet import Bottleneck as _Bottleneck 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