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
4272470e
Commit
4272470e
authored
Nov 24, 2020
by
lucas_miranda
Browse files
updated dependencies
parent
2eb1b4ee
Pipeline
#87699
passed with stage
in 17 minutes and 22 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
deepof/hypermodels.py
View file @
4272470e
...
...
@@ -107,7 +107,7 @@ class SEQ_2_SEQ_GMVAE(HyperModel):
# Architectural hyperparameters
conv_filters
=
hp
.
Int
(
"units_conv"
,
min_value
=
128
,
max_value
=
160
,
step
=
32
,
default
=
128
,
"units_conv"
,
min_value
=
128
,
max_value
=
160
,
step
=
16
,
default
=
128
,
)
lstm_units_1
=
hp
.
Int
(
"units_lstm"
,
min_value
=
300
,
max_value
=
350
,
step
=
10
,
default
=
320
,
...
...
@@ -122,15 +122,15 @@ class SEQ_2_SEQ_GMVAE(HyperModel):
default
=
0.0
,
sampling
=
"linear"
,
)
encoding
=
hp
.
Int
(
"encoding"
,
min_value
=
20
,
max_value
=
30
,
step
=
5
,
default
=
25
,
)
k
=
hp
.
Int
(
"n_components"
,
min_value
=
self
.
number_of_components
-
5
,
max_value
=
self
.
number_of_components
+
5
,
step
=
5
,
default
=
self
.
number_of_components
,
# sampling="linear",
)
encoding
=
16
#
hp.Int("encoding", min_value=20, max_value=30, step=5, default=25, )
k
=
5
#
hp.Int(
#
"n_components",
#
min_value=self.number_of_components - 5,
#
max_value=self.number_of_components + 5,
#
step=5,
#
default=self.number_of_components,
#
# sampling="linear",
#
)
return
(
conv_filters
,
...
...
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