-
I am a little confused about reloading a tuner to access the trials. I made some initial experiments and during one of these session I incorrectly used the wrong library (imported the keras library, not from TF). In this case I see that the Keras tuner saved a JSON file per slave. It also saved an However, when I use the "correct" import, I see no os.environ['KERASTUNER_TUNER_ID'] = 'oracle' So the question is, does the Tuner save a I am also using I have searched this issue but nobody seems to have complained. TIA EDIT: one small detail I neglected to mention. When the tuning finishes, the chief process dos not terminate. I am forced to kill it. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Finally figured this out. I had created (constructed) 2 tuners in the same process. I then used the second one to do the search. It seems like the path to the oracle JSON file that is set in the 1st constructor is not used on the second one. The other members/properties are updated correctly. The result is the output of the second tuner's oracle was going to the folder set up in the first tuner (other data was set correctly). Does not seem intuitive. I assume that searching on the tuner will always use that tuner's properties only. |
Beta Was this translation helpful? Give feedback.
Finally figured this out. I had created (constructed) 2 tuners in the same process. I then used the second one to do the search. It seems like the path to the oracle JSON file that is set in the 1st constructor is not used on the second one. The other members/properties are updated correctly. The result is the output of the second tuner's oracle was going to the folder set up in the first tuner (other data was set correctly).
Does not seem intuitive. I assume that searching on the tuner will always use that tuner's properties only.