control mlflow logging
This commit is contained in:
parent
4fcecdd22f
commit
2683940ff4
|
|
@ -120,7 +120,11 @@ class Model(pl.LightningModule):
|
||||||
|
|
||||||
loss = self.loss(prediction, target)
|
loss = self.loss(prediction, target)
|
||||||
|
|
||||||
if self.logger:
|
if (
|
||||||
|
(self.logger)
|
||||||
|
and (self.global_step > 50)
|
||||||
|
and (self.global_step % 50 == 0)
|
||||||
|
):
|
||||||
self.logger.experiment.log_metric(
|
self.logger.experiment.log_metric(
|
||||||
run_id=self.logger.run_id,
|
run_id=self.logger.run_id,
|
||||||
key="train_loss",
|
key="train_loss",
|
||||||
|
|
@ -141,7 +145,11 @@ class Model(pl.LightningModule):
|
||||||
self.log("val_metric", metric_val.item())
|
self.log("val_metric", metric_val.item())
|
||||||
self.log("val_loss", loss_val.item())
|
self.log("val_loss", loss_val.item())
|
||||||
|
|
||||||
if self.logger:
|
if (
|
||||||
|
(self.logger)
|
||||||
|
and (self.global_step > 50)
|
||||||
|
and (self.global_step % 50 == 0)
|
||||||
|
):
|
||||||
self.logger.experiment.log_metric(
|
self.logger.experiment.log_metric(
|
||||||
run_id=self.logger.run_id,
|
run_id=self.logger.run_id,
|
||||||
key="val_loss",
|
key="val_loss",
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue