Skip to content

Commit

Permalink
update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
OceanPang committed Dec 20, 2018
1 parent ba3543b commit 21467a7
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 9 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
6 changes: 5 additions & 1 deletion mmdet/models/backbones/resnet.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,11 @@ def __init__(self,
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,
Expand Down
1 change: 0 additions & 1 deletion mmdet/models/backbones/resnext.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import math

import torch.nn as nn
import torch.utils.checkpoint as cp

from .resnet import ResNet
from .resnet import Bottleneck as _Bottleneck
Expand Down

0 comments on commit 21467a7

Please sign in to comment.