Skip to main content

Visualize Your Deep Learning Training in Static Graphics

Project description

Deep Plots Build Status PyPI PyPI - Python Version

Visualize Your Deep Learning Training in Static Graphics.

Plot Loss

Why? Analyzing learning curves are a standard way to evaluate the learning performances of machine learning models. There exist several tools for creating live plots. This Python package focuses on producing beautiful static graphics only.

Currently, only plotting from Keras CSV log file format is supported.

For creating the graphics, plotnine is used which is build upon Matplotlib.

Installation

pip install deep_plots

Unfortunately, you may need to:

pip install numpy

before because a depedency implicitly assumes numpy is installed.

Usage

# create a Keras callback to log your training
csv_logger = keras.callbacks.CSVLogger('log.csv')

# train your model
model.fit(X, y, ..., callbacks=[csv_logger, ...])

# after finishing training, plot the learning curves with Deep Plots
deep_plots.from_keras_log('log.csv', 'output_dir')

Related

Contributing

If you have a question, found a bug or want to propose a new feature, have a look at the issues page.

Pull requests are especially welcomed when they fix bugs or improve the code quality.

License

MIT.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

deep_plots-0.1.1.tar.gz (3.8 kB view hashes)

Uploaded Source

Built Distribution

deep_plots-0.1.1-py2.py3-none-any.whl (4.3 kB view hashes)

Uploaded Python 2 Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page