def get_trial(): trial = runner.get_trial(args["trial_id"]) if trial is None: error = "Trial ({}) not found.".format(args["trial_id"]) raise TuneManagerError(error) else: return trial
def execute_command(self, args): def get_trial(): trial = runner.get_trial(args["trial_id"]) if trial is None: error = "Trial ({}) not found.".format(args["trial_id"]) raise TuneManagerError(error) else: return trial command = args["command"] response = {} try: if command == TuneClient.GET_LIST: response["trials"] = [ self.trial_info(t) for t in runner.get_trials() ] elif command == TuneClient.GET_TRIAL: trial = get_trial() response["trial_info"] = self.trial_info(trial) elif command == TuneClient.STOP: trial = get_trial() runner.request_stop_trial(trial) elif command == TuneClient.ADD: name = args["name"] spec = args["spec"] for trial in generate_trials(spec, name): runner.add_trial(trial) else: raise TuneManagerError("Unknown command.") status = True except TuneError as e: status = False response["message"] = str(e) return status, response