Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
vision
Commits
c3e2b018
Unverified
Commit
c3e2b018
authored
Mar 04, 2020
by
Philip Meier
Committed by
GitHub
Mar 04, 2020
Browse files
add comment (#1932)
parent
3b0b201a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
0 deletions
+2
-0
torchvision/models/googlenet.py
torchvision/models/googlenet.py
+2
-0
No files found.
torchvision/models/googlenet.py
View file @
c3e2b018
...
@@ -224,6 +224,8 @@ class Inception(nn.Module):
...
@@ -224,6 +224,8 @@ class Inception(nn.Module):
self
.
branch3
=
nn
.
Sequential
(
self
.
branch3
=
nn
.
Sequential
(
conv_block
(
in_channels
,
ch5x5red
,
kernel_size
=
1
),
conv_block
(
in_channels
,
ch5x5red
,
kernel_size
=
1
),
# Here, kernel_size=3 instead of kernel_size=5 is a known bug.
# Please see https://github.com/pytorch/vision/issues/906 for details.
conv_block
(
ch5x5red
,
ch5x5
,
kernel_size
=
3
,
padding
=
1
)
conv_block
(
ch5x5red
,
ch5x5
,
kernel_size
=
3
,
padding
=
1
)
)
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment