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
960c58a6
Commit
960c58a6
authored
Nov 20, 2020
by
lucas_miranda
Browse files
Changed default hyperparameters based on BayOpt experiments
parent
72b837e2
Pipeline
#87366
failed with stage
in 20 minutes and 9 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
deepof/hypermodels.py
View file @
960c58a6
...
...
@@ -107,26 +107,26 @@ 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
=
32
,
max_value
=
256
,
step
=
32
,
default
=
256
,
)
lstm_units_1
=
hp
.
Int
(
"units_lstm"
,
min_value
=
300
,
max_value
=
350
,
step
=
10
,
default
=
320
,
"units_lstm"
,
min_value
=
128
,
max_value
=
512
,
step
=
32
,
default
=
256
,
)
dense_2
=
hp
.
Int
(
"units_dense2"
,
min_value
=
120
,
max_value
=
180
,
step
=
10
,
default
=
64
,
"units_dense2"
,
min_value
=
32
,
max_value
=
256
,
step
=
32
,
default
=
64
,
)
dropout_rate
=
hp
.
Float
(
"dropout_rate"
,
min_value
=
0.0
,
max_value
=
0.
1
5
,
default
=
0.
0
,
max_value
=
0.5
,
default
=
0.
25
,
sampling
=
"linear"
,
)
encoding
=
hp
.
Int
(
"encoding"
,
min_value
=
32
,
max_value
=
32
,
step
=
8
,
default
=
3
2
,)
encoding
=
hp
.
Int
(
"encoding"
,
min_value
=
16
,
max_value
=
64
,
step
=
8
,
default
=
2
4
,)
k
=
hp
.
Int
(
"n_components"
,
min_value
=
self
.
number_of_components
,
max_value
=
self
.
number_of_components
,
min_value
=
1
,
max_value
=
25
,
step
=
1
,
default
=
self
.
number_of_components
,
sampling
=
"linear"
,
...
...
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