Releases: dvgodoy/deepreplay
Releases · dvgodoy/deepreplay
Custom Metric Support
This small release includes support for custom metrics and objects.
Prior to this release, DeepReplay expected a metric name like acc
as argument and would fail if an instance of a metric object were passed as argument instead.
Now, it takes either a metric name or an instance of a metric object (custom or not).
Fixes
Hyper-parameters in Action! Part 2
ReplayData Callback
model
parameter included, for fetching model initial conditions without having to fit it
Replay
- new visualizations included:
- violin plot for the weights (
build_weights
method) - violint plots for the Z-values/Activations (
build_outputs
method) - violin plot for the gradients (
build_gradients
method)
- violin plot for the weights (
- new properties
weights_std
: standard deviation of the weights per layergradients_std
: standard deviation of the gradients per layer
Datasets
- two new datasets included:
ball
for generating points with zero mean and unit standard deviation inside a n-ballhypercube
for generating points for the corners of a n-dimensional hypercube