How to use the livelossplot.poutyne.PlotLossesCallback function in livelossplot

To help you get started, we’ve selected a few livelossplot examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github stared / livelossplot / livelossplot / __init__.py View on Github external
def PlotLossesPoutyne(*args, **kwargs):
    warnings.warn("From v0.3 onwards, use:\nfrom livelossplot.poutyne import PlotLossesCallback", DeprecationWarning)
    from .poutyne import PlotLossesCallback
    return PlotLossesCallback(*args, **kwargs)
github stared / livelossplot / livelossplot / poutyne.py View on Github external
def __init__(self, **kwargs):
        super(PlotLossesCallback, self).__init__()
        self.liveplot = PlotLosses(**kwargs)
        self.metrics = None