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
How to find the position correspondences for the random-named optimized parameters?
During the tuning process, there are some important outputs which can help to locate.
First, check the definition of get_space function in Hypers search space from the tuning outputs. You will find something like this:
This information helps us to know the naming for all parameters to be tuned.
Second, check the Resulting replaced keras model from the tuning outputs. Something like this:
You will see some codes are replaced by space['Dropout'], space['Dropout_1']. This is the corresponding positions for the optimized parameters. At this point, it's easy to fill in the optimized parameters.