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
f586f6e3
Commit
f586f6e3
authored
Apr 11, 2020
by
sjjsmuel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
reduce again.
parent
a52bb4ed
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
3 deletions
+1
-3
classifier/Resnet152.py
classifier/Resnet152.py
+1
-3
No files found.
classifier/Resnet152.py
View file @
f586f6e3
...
...
@@ -32,9 +32,7 @@ class Resnet152(NetworkBase):
x
=
AveragePooling2D
((
14
,
14
),
name
=
'avg_pool'
)(
base_model
.
output
)
x
=
Flatten
()(
x
)
x
=
Dropout
(
0.5
)(
x
)
x
=
Dense
(
8192
,
activation
=
'relu'
)(
x
)
x
=
Dropout
(
0.5
)(
x
)
x
=
Dense
(
1024
,
activation
=
'relu'
)(
x
)
x
=
Dense
(
2048
,
activation
=
'relu'
)(
x
)
x
=
Dropout
(
0.5
)(
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