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
Describe the bug
I ran an experiment with keras_tuner.BayesianOptimization in which executions_per_trial=3. When I check the file ./oracle.json I realize that the field run_times is always equal to 1.
Moreover, the files ./../trial.json of each trial only return 1 best score and a single value in metric.
Expected behavior
I would expect two things to behave differently:
oracle.json file should return each trial with run_times=3 if the user requested executions_per_trial=3 in the configuration
Each trial.json file should return a list of lenght len(executions_per_trial) containing the scores / metrics for each execution per trial, so the user can analyze better the algorithm.
Am I missing something or this is how it works?
Thanks!