Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
deepOF
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Lucas Miranda
deepOF
Commits
96fbfb81
Commit
96fbfb81
authored
5 years ago
by
Lucas Miranda
Browse files
Options
Downloads
Patches
Plain Diff
Parameterised path in main.ipynb
parent
d7884add
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
source/models.py
+4
-3
4 additions, 3 deletions
source/models.py
with
4 additions
and
3 deletions
source/models.py
+
4
−
3
View file @
96fbfb81
...
@@ -68,7 +68,7 @@ class SEQ_2_SEQ_AE:
...
@@ -68,7 +68,7 @@ class SEQ_2_SEQ_AE:
self
.
ENCODING
,
self
.
ENCODING
,
activation
=
"
relu
"
,
activation
=
"
relu
"
,
kernel_constraint
=
UnitNorm
(
axis
=
1
),
kernel_constraint
=
UnitNorm
(
axis
=
1
),
activity_regularizer
=
UncorrelatedFeaturesConstraint
(
3
,
weightage
=
1.0
),
#
activity_regularizer=UncorrelatedFeaturesConstraint(3, weightage=1.0),
)
)
# Decoder layers
# Decoder layers
...
@@ -184,7 +184,7 @@ class SEQ_2_SEQ_VAE:
...
@@ -184,7 +184,7 @@ class SEQ_2_SEQ_VAE:
self
.
ENCODING
,
self
.
ENCODING
,
activation
=
"
relu
"
,
activation
=
"
relu
"
,
kernel_constraint
=
UnitNorm
(
axis
=
1
),
kernel_constraint
=
UnitNorm
(
axis
=
1
),
activity_regularizer
=
UncorrelatedFeaturesConstraint
(
3
,
weightage
=
1.0
),
#
activity_regularizer=UncorrelatedFeaturesConstraint(3, weightage=1.0),
)
)
# Decoder layers
# Decoder layers
...
@@ -282,8 +282,9 @@ class SEQ_2_SEQ_MMVAE:
...
@@ -282,8 +282,9 @@ class SEQ_2_SEQ_MMVAE:
# - Initial Convnet switch (done!)
# - Initial Convnet switch (done!)
# - Bidirectional LSTM switches (done!)
# - Bidirectional LSTM switches (done!)
# - Change LSTMs for GRU (done!)
# - Change LSTMs for GRU (done!)
# - Tied/Untied weights
# - Tied/Untied weights
(done!)
# - orthogonal/non-orthogonal weights
# - orthogonal/non-orthogonal weights
# - Unit Norm constraint
# TODO next:
# TODO next:
# - VAE loss function (though this should be analysed later on taking the encodings into account)
# - VAE loss function (though this should be analysed later on taking the encodings into account)
# - Smaller input sliding window (10-15 frames)
# - Smaller input sliding window (10-15 frames)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment