From 9cacb4088c07328a525ae63f484ed9583ba63e38 Mon Sep 17 00:00:00 2001 From: quantylab Date: Thu, 12 Mar 2020 15:29:36 +0900 Subject: [PATCH] a3c visualization fix --- learners.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/learners.py b/learners.py index 0454e8c..c40a65a 100644 --- a/learners.py +++ b/learners.py @@ -226,7 +226,8 @@ def run( # 가시화 결과 저장할 폴더 준비 self.epoch_summary_dir = os.path.join( - self.output_path, 'epoch_summary') + self.output_path, 'epoch_summary_{}'.format( + self.stock_code)) if not os.path.isdir(self.epoch_summary_dir): os.makedirs(self.epoch_summary_dir) else: