How to use the livelossplot.tf_keras.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 PlotLossesTensorFlowKeras(*args, **kwargs):
    warnings.warn("New and deprecated at the same time!\nFrom v0.3 onwards, use:\nfrom livelossplot.tf_keras import PlotLossesCallback", DeprecationWarning)
    from .tf_keras import PlotLossesCallback
    return PlotLossesCallback(*args, **kwargs)