Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
yomichi committed Nov 1, 2024
1 parent 4ce5aa4 commit d7d6c76
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,10 @@ def train(self, train_dir = "train"):
except subprocess.CalledProcessError as e:
print(e.stdout)
print(e.stderr)
raise
subprocess.run(
self.train_exe, check=True
)
# raise
with open("stdout", "r") as trainout:
fullout = trainout.readlines()
epoch_data = []
Expand Down

0 comments on commit d7d6c76

Please sign in to comment.