A simple python package to print a keras NN training history.
Project description
A simple python package to print a keras NN training history.
How do I get it?
Just type into your terminal:
pip install plot_keras_history
Usage example
import matplotlib.pyplot as plt
from plot_keras_history import plot_history
import json
history = json.load(open("tests/history.json", "r"))
plot_history(history)
plt.savefig('history.png')
Utilities
A simple handy function the package makes available is chain_histories, to (you might have guessed) chain histories.
from plot_keras_history import chain_histories
first_history = model.fit(...).history
second_history = model.fit(...).history
complete_history = chain_histories(first_history, second_history)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file plot_keras_history-1.1.5.tar.gz
.
File metadata
- Download URL: plot_keras_history-1.1.5.tar.gz
- Upload date:
- Size: 4.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.13.0 setuptools/40.6.3 requests-toolbelt/0.9.1 tqdm/4.28.1 CPython/3.7.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8799ddd9da7ed7b6b9834c3cf7978b7cce06610544dda1f84a3a151ca156ee26 |
|
MD5 | 17ee825a167b94fb8aca54aae142c7dc |
|
BLAKE2b-256 | feb30aa197d5f53b518a138a6ad4aac473605c9c72102981d33a0d2855dc37f2 |