Pytorch-lightning: Add an easy way to manipulate progressbar metrics

Created on 31 Aug 2019  路  1Comment  路  Source: PyTorchLightning/pytorch-lightning

Until now, the progress bar only shows a limited number of parameters. It'd be very helpful if we could directly manipulate internal tqdm metrics.

enhancement help wanted

Most helpful comment

that's already possible:
https://pytorch-lightning.readthedocs.io/en/latest/LightningModule/RequiredTrainerInterface/#training_step

    output = {
        'loss': loss, # required
        'prog': {'tng_loss': loss, 'batch_nb': batch_nb} # optional
    }

>All comments

that's already possible:
https://pytorch-lightning.readthedocs.io/en/latest/LightningModule/RequiredTrainerInterface/#training_step

    output = {
        'loss': loss, # required
        'prog': {'tng_loss': loss, 'batch_nb': batch_nb} # optional
    }
Was this page helpful?
0 / 5 - 0 ratings

Related issues

lorenzoFabbri picture lorenzoFabbri  路  34Comments

jeremycochoy picture jeremycochoy  路  25Comments

Dunrar picture Dunrar  路  45Comments

Darktex picture Darktex  路  26Comments

Anjum48 picture Anjum48  路  28Comments