-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
EXP_STOP operation removes both completed and incomplete experiment #114
Comments
@johnaohara If the user wants to restart the same experiment, the user has to do EXP_REMOVE and then EXP_START. The caveat of this operation would be the user will lose the available data for that experiment. |
@kusumachalasani , thanks for opening this issue. The original intention for Now that HPO retains state, and has functions to generate charts after the trials have been completed. What is the expected behavior if a user wants to start a new set of trials, i.e using the same configuration? i.e. what is the expected lifecycle of a set of results? if someone starts a new experiment, using the same configuration, is the old data erased? if not, how would the experiments be uniquly identified? |
@johnaohara
The data for an experiment is available until that experiment exists in HPO. |
@johnaohara I updated the operation from EXP_STOP to EXP_DELETE and also updated the function names to use delete instead of stop. I did update the function names for gRPC as well. |
Closing this as the changes required went in as part of PR #117. |
EXP_STOP
is intended to cancel the experiment when the experiment is incomplete.Right now, it deletes the experiment irrespective of if an experiment is complete or not.
Because of this, the plots generated for the completed experiment become inaccessible.
@johnaohara
The text was updated successfully, but these errors were encountered: