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
3a9ea9c0
Commit
3a9ea9c0
authored
Apr 11, 2020
by
sjjsmuel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
smaller dense layer
parent
556b2eee
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
classifier/Resnet152.py
classifier/Resnet152.py
+1
-1
No files found.
classifier/Resnet152.py
View file @
3a9ea9c0
...
...
@@ -32,7 +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
(
65536
,
activation
=
'relu'
)(
x
)
x
=
Dense
(
8192
,
activation
=
'relu'
)(
x
)
x
=
Dropout
(
0.5
)(
x
)
x
=
Dense
(
1024
,
activation
=
'relu'
)(
x
)
x
=
Dropout
(
0.7
)(
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