Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Lucas Miranda
deepOF
Commits
6688a01f
Commit
6688a01f
authored
Nov 17, 2020
by
lucas_miranda
Browse files
Fixed bug in hyperparameter tuning
parent
3e4a5e3d
Pipeline
#86897
failed with stage
in 15 minutes and 48 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
deepof/models.py
View file @
6688a01f
...
...
@@ -526,9 +526,9 @@ class SEQ_2_SEQ_GMVAE:
encoder
=
Model_E4
(
encoder
)
encoder
=
BatchNormalization
()(
encoder
)
encoding_shuffle
=
deepof
.
model_utils
.
MCDropout
(
self
.
DROPOUT_RATE
)(
encoder
)
#
encoding_shuffle = deepof.model_utils.MCDropout(self.DROPOUT_RATE)(encoder)
z_cat
=
Dense
(
self
.
number_of_components
,
activation
=
"softmax"
,)(
encod
ing_shuffl
e
encode
r
)
z_cat
=
deepof
.
model_utils
.
Entropy_regulariser
(
self
.
entropy_reg_weight
)(
z_cat
)
z_gauss
=
Dense
(
...
...
Write
Preview
Supports
Markdown
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