Skip to content

Commit

Permalink
fix: missing _
Browse files Browse the repository at this point in the history
  • Loading branch information
SigureMo committed Sep 24, 2021
1 parent ca436e4 commit fddf07e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/paddle/vision/models/googlenet.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ def forward(self, inputs):

class _GoogLeNet(nn.Layer):
def __init__(self, class_num=1000):
super(GoogLeNet, self).__init__()
super(_GoogLeNet, self).__init__()
self._conv = ConvLayer(3, 64, 7, 2, name="conv1")
self._pool = MaxPool2D(kernel_size=3, stride=2)
self._conv_1 = ConvLayer(64, 64, 1, name="conv2_1x1")
Expand Down

0 comments on commit fddf07e

Please sign in to comment.