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
011ad187
Commit
011ad187
authored
May 26, 2020
by
lucas_miranda
Browse files
Parameterised path in main.ipynb
parent
76652551
Changes
1
Hide whitespace changes
Inline
Side-by-side
source/models.py
View file @
011ad187
...
...
@@ -68,7 +68,7 @@ class SEQ_2_SEQ_AE:
self
.
ENCODING
,
activation
=
"relu"
,
kernel_constraint
=
UnitNorm
(
axis
=
1
),
#
activity_regularizer=UncorrelatedFeaturesConstraint(3, weightage=1.0),
activity_regularizer
=
UncorrelatedFeaturesConstraint
(
3
,
weightage
=
1.0
),
)
# Decoder layers
...
...
@@ -184,7 +184,7 @@ class SEQ_2_SEQ_VAE:
self
.
ENCODING
,
activation
=
"relu"
,
kernel_constraint
=
UnitNorm
(
axis
=
1
),
#
activity_regularizer=UncorrelatedFeaturesConstraint(3, weightage=1.0),
activity_regularizer
=
UncorrelatedFeaturesConstraint
(
3
,
weightage
=
1.0
),
)
# Decoder layers
...
...
@@ -283,7 +283,7 @@ class SEQ_2_SEQ_MMVAE:
# - Bidirectional LSTM switches (done!)
# - Change LSTMs for GRU (done!)
# - Tied/Untied weights (done!)
# - orthogonal/non-orthogonal weights
# - orthogonal/non-orthogonal weights
(done!)
# - Unit Norm constraint
# TODO next:
# - VAE loss function (though this should be analysed later on taking the encodings into account)
...
...
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