You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently the dropout value follows hyperparameters.Choice("dropout", [0.0, 0.25, 0.5], default=0.0)
Proposal 1: Make the dropout more granular to [0.0, 0.1, 0.2, 0.3, 0.4, 0.5] or even more granular at 0.05 increments
Proposal 2: Usage of Keras Tuner to use Float with 0.1 or 0.05 steps, or with linear sampling https://keras.io/api/keras_tuner/hyperparameters/#float-method
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Currently the dropout value follows
hyperparameters.Choice("dropout", [0.0, 0.25, 0.5], default=0.0)
Proposal 1: Make the dropout more granular to
[0.0, 0.1, 0.2, 0.3, 0.4, 0.5]
or even more granular at 0.05 incrementsProposal 2: Usage of Keras Tuner to use
Float
with 0.1 or 0.05 steps, or with linear sampling https://keras.io/api/keras_tuner/hyperparameters/#float-methodReference: https://github.com/keras-team/autokeras/blob/master/autokeras/blocks/heads.py https://github.com/keras-team/autokeras/blob/master/autokeras/blocks/basic.py
Beta Was this translation helpful? Give feedback.
All reactions