コード例 #1
0
ファイル: tune.py プロジェクト: fugue-project/fugue-incubator
 def _get_temp_path(p: str, conf: ParamDict) -> str:
     if p is not None and p != "":
         return p
     return conf.get_or_throw(FUGUE_TUNE_TEMP_PATH,
                              str)  # TODO: remove hard code
コード例 #2
0
ファイル: dataset.py プロジェクト: fugue-project/tune
 def _get_temp_path(p: str, conf: ParamDict) -> str:
     if p is not None and p != "":
         return p
     return conf.get_or_throw(TUNE_TEMP_PATH, str)