Skip to content

Commit

Permalink
perf(AutoML): switched csvlogger to append mode
Browse files Browse the repository at this point in the history
  • Loading branch information
muellerdo committed Jun 24, 2022
1 parent 6a54157 commit 834799e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aucmedi/automl/block_train.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ def block_train(config):
callbacks.append(cb_loss)
if config["analysis"] in ["minimal", "standard"]:
cb_cl = CSVLogger(os.path.join(config["output"], "logs.training.csv"),
separator=',', append=False)
separator=',', append=True)
callbacks.append(cb_cl)
if config["analysis"] != "minimal":
cb_lr = ReduceLROnPlateau(monitor='val_loss', factor=0.1, patience=8,
Expand Down

0 comments on commit 834799e

Please sign in to comment.