Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
sjjsmuel
caries_classifier
Commits
556b2eee
Commit
556b2eee
authored
Apr 11, 2020
by
sjjsmuel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dropout
parent
576a0596
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
classifier/Resnet152.py
classifier/Resnet152.py
+2
-2
No files found.
classifier/Resnet152.py
View file @
556b2eee
...
...
@@ -31,9 +31,9 @@ class Resnet152(NetworkBase):
x
=
AveragePooling2D
((
14
,
14
),
name
=
'avg_pool'
)(
base_model
.
output
)
x
=
Flatten
()(
x
)
x
=
Dropout
(
0.
7
)(
x
)
x
=
Dropout
(
0.
5
)(
x
)
x
=
Dense
(
65536
,
activation
=
'relu'
)(
x
)
x
=
Dropout
(
0.
7
)(
x
)
x
=
Dropout
(
0.
5
)(
x
)
x
=
Dense
(
1024
,
activation
=
'relu'
)(
x
)
x
=
Dropout
(
0.7
)(
x
)
out
=
Dense
(
self
.
NUM_CLASSES
,
activation
=
'softmax'
)(
x
)
...
...
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