Skip to content

Commit

Permalink
fix googlenet out shape
Browse files Browse the repository at this point in the history
  • Loading branch information
SigureMo authored Oct 20, 2021
1 parent 07e9576 commit 0466e6f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/api/paddle/vision/models/GoogLeNet_cn.rst
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,6 @@ GoogLeNet模型,Layer的实例。
model = GoogLeNet()
x = paddle.rand([1, 3, 224, 224])
out = model(x)
out, out1, out2 = model(x)
print(out.shape)
2 changes: 1 addition & 1 deletion docs/api/paddle/vision/models/googlenet_cn.rst
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@ GoogLeNet模型,Layer的实例。
# model = googlenet(pretrained=True)
x = paddle.rand([1, 3, 224, 224])
out = model(x)
out, out1, out2 = model(x)
print(out.shape)

0 comments on commit 0466e6f

Please sign in to comment.