コード例 #1
0
ファイル: learn.py プロジェクト: smallant/ml-agents
def write_timing_tree(summaries_dir: str, run_id: str) -> None:
    timing_path = f"{summaries_dir}/{run_id}_timers.json"
    try:
        with open(timing_path, "w") as f:
            json.dump(get_timer_tree(), f, indent=4)
    except FileNotFoundError:
        logging.warning(
            f"Unable to save to {timing_path}. Make sure the directory exists")
コード例 #2
0
def write_timing_tree(output_dir: str) -> None:
    timing_path = os.path.join(output_dir, "timers.json")
    try:
        with open(timing_path, "w") as f:
            json.dump(get_timer_tree(), f, indent=4)
    except FileNotFoundError:
        logger.warning(
            f"Unable to save to {timing_path}. Make sure the directory exists")
コード例 #3
0
 def _write_timing_tree(self) -> None:
     timing_path = f"{self.summaries_dir}/{self.run_id}_timers.json"
     try:
         with open(timing_path, "w") as f:
             json.dump(get_timer_tree(), f, indent=2)
     except FileNotFoundError:
         self.logger.warning(
             f"Unable to save to {timing_path}. Make sure the directory exists"
         )