From 915ab5f65d1e980e781057fc497225a752edd9df Mon Sep 17 00:00:00 2001 From: mrq Date: Sat, 18 Feb 2023 03:17:46 +0000 Subject: [PATCH] fixes --- src/utils.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/utils.py b/src/utils.py index f03dbcd..3f336c5 100755 --- a/src/utils.py +++ b/src/utils.py @@ -450,6 +450,7 @@ def run_training(config_path): buffer=[] for line in iter(training_process.stdout.readline, ""): buffer.append(line) + print(line) yield "".join(buffer) training_process.stdout.close()