Skip to content

Customize the summary of metrics in wandb table #170

Discussion options

You must be logged in to vote

One possible way :

import wandb

...

    def on_fit_start(self) -> None:
        wandb.define_metric(f"train/loss", summary='min')
        wandb.define_metric(f"val/loss", summary='min')
        wandb.define_metric(f"test/loss", summary='min')
        wandb.define_metric(f"train/acc", summary='max')
        wandb.define_metric(f"val/acc", summary='max')
        wandb.define_metric(f"test/acc", summary='max')

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@ashleve
Comment options

Answer selected by ashleve
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants