Skip to content

Commit

Permalink
Rename
Browse files Browse the repository at this point in the history
  • Loading branch information
potterhsu committed Oct 6, 2018
1 parent 8e56330 commit c03d39d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,29 +30,29 @@ An easy implementation of Faster R-CNN in PyTorch.
<td>0.7015</td>
</tr>
<tr style="color: gray;">
<td>Resnet-101 (freeze 0~4)</td>
<td>ResNet-101 (freeze 0~4)</td>
<td>~5.4 examples/sec</td>
<td>~11 examples/sec</td>
<td>0.7496</td>
</tr>
<tr style="color: gray;">
<td>Resnet-101 (freeze 0~5)</td>
<td>ResNet-101 (freeze 0~5)</td>
<td>~5.7 examples/sec</td>
<td>~11 examples/sec</td>
<td>0.7466</td>
</tr>
<tr>
<td>
<a href="https://drive.google.com/open?id=1t-lv8bNcPnoeVru3PD3BLLMmFHsUY8u9">
Resnet-101 (freeze 0~6)
ResNet-101 (freeze 0~6)
</a>
</td>
<td>~7.5 examples/sec</td>
<td>~11 examples/sec</td>
<td>0.7523</td>
</tr>
<tr style="color: gray;">
<td>Resnet-101 (freeze 0~7)</td>
<td>ResNet-101 (freeze 0~7)</td>
<td>~8.4 examples/sec</td>
<td>~11 examples/sec</td>
<td>0.6983</td>
Expand Down
4 changes: 2 additions & 2 deletions backbone/interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ def from_name(name: str) -> Type['Interface']:
from backbone.vgg16 import Vgg16
return Vgg16
elif name == 'resnet101':
from backbone.resnet101 import Resnet101
return Resnet101
from backbone.resnet101 import ResNet101
return ResNet101
else:
raise ValueError

Expand Down
2 changes: 1 addition & 1 deletion backbone/resnet101.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from backbone.interface import Interface


class Resnet101(Interface):
class ResNet101(Interface):

def __init__(self, pretrained: bool):
super().__init__(pretrained)
Expand Down

0 comments on commit c03d39d

Please # to comment.