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
MMCV
Commits
8332ddbc
Commit
8332ddbc
authored
Oct 09, 2018
by
yl-1993
Browse files
rm unused
parent
64959bd7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
2 deletions
+1
-2
mmcv/cnn/alexnet.py
mmcv/cnn/alexnet.py
+1
-2
No files found.
mmcv/cnn/alexnet.py
View file @
8332ddbc
import
logging
import
logging
import
math
import
torch.nn
as
nn
import
torch.nn
as
nn
...
@@ -40,7 +39,7 @@ class AlexNet(nn.Module):
...
@@ -40,7 +39,7 @@ class AlexNet(nn.Module):
nn
.
ReLU
(
inplace
=
True
),
nn
.
ReLU
(
inplace
=
True
),
nn
.
Dropout
(),
nn
.
Dropout
(),
nn
.
Linear
(
4096
,
4096
),
nn
.
Linear
(
4096
,
4096
),
nn
.
ReLU
(
inplace
=
True
),
# caffe has dropout
nn
.
ReLU
(
inplace
=
True
),
nn
.
Linear
(
4096
,
num_classes
),
nn
.
Linear
(
4096
,
num_classes
),
)
)
...
...
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