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
3113b526
Commit
3113b526
authored
4 years ago
by
Lucas Miranda
Browse files
Options
Downloads
Patches
Plain Diff
Updated Pipfile.lock
parent
5bff3955
No related branches found
No related tags found
No related merge requests found
Pipeline
#89273
passed
4 years ago
Stage: test
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
deepof/models.py
+2
-0
2 additions, 0 deletions
deepof/models.py
deepof/train_model.py
+1
-1
1 addition, 1 deletion
deepof/train_model.py
deepof_experiments.smk
+2
-2
2 additions, 2 deletions
deepof_experiments.smk
with
5 additions
and
3 deletions
deepof/models.py
+
2
−
0
View file @
3113b526
...
...
@@ -775,3 +775,5 @@ class SEQ_2_SEQ_GMVAE:
# TODO:
# - Check usefulness of stateful sequential layers! (stateful=True in the LSTMs)
# - Investigate full covariance matrix approximation for the latent space! (details on tfp course) :)
# - Explore expanding the event dims of the final reconstruction layer
# - Gaussian Mixture as output layer? One component per bodypart (makes sense?)
\ No newline at end of file
This diff is collapsed.
Click to expand it.
deepof/train_model.py
+
1
−
1
View file @
3113b526
...
...
@@ -400,7 +400,7 @@ if not tune:
logparams
.
append
(
hp
.
HParam
(
"
pheno_weight
"
,
hp
.
RealInterval
(
min_value
=
0
,
max_value
=
1000
),
hp
.
RealInterval
(
min_value
=
0
.0
,
max_value
=
1000
.0
),
display_name
=
"
pheno weight
"
,
description
=
"
weight applied to phenotypic classifier from the latent space
"
,
)
...
...
This diff is collapsed.
Click to expand it.
deepof_experiments.smk
+
2
−
2
View file @
3113b526
...
...
@@ -80,7 +80,7 @@ rule explore_encoding_dimension_and_loss_function:
"--components {wildcards.k} "
"--input-type coords "
"--predictor 0 "
"--phenotype-classifier 0"
"--phenotype-classifier 0
"
"--variational True "
"--loss {wildcards.loss} "
"--kl-warmup 20 "
...
...
@@ -109,7 +109,7 @@ rule explore_phenotype_classification:
"--components {wildcards.k} "
"--input-type coords "
"--predictor 0 "
"--phenotype-classifier {wildcards.phenos}"
"--phenotype-classifier {wildcards.phenos}
"
"--variational True "
"--loss {wildcards.loss} "
"--kl-warmup 20 "
...
...
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