Added bordercolor kwarg to features_2D which allows setting color of border lines, useful when images are majority-dark
Improved xaxis annotation handling for pad_xticks kwarg in features_hist_v2, but pad_xticks is now a bool instead of int (#TODO)
show_xy_ticks can now be an int or bool, which will automatically set to tuple (int, int).
Changed default kwarg timesteps_xaxis to False in features_2D which would rotate image data
Bugfixes:
features_2D: moved ndim != 3 check outside of timesteps_xaxis, which would fail to expand_dims(0, ...) for =False w/ 2D input
weights_norm: the case of one weights per layer would process incorrectly due to iterating over an expected list, where get_weights returns the array itself in case of a single weight
Features:
bordercolor
kwarg tofeatures_2D
which allows setting color of border lines, useful when images are majority-darkpad_xticks
kwarg infeatures_hist_v2
, butpad_xticks
is now a bool instead of int (#TODO)show_xy_ticks
can now be anint
orbool
, which will automatically set to tuple(int, int)
.timesteps_xaxis
toFalse
infeatures_2D
which would rotate image dataBugfixes:
features_2D
: movedndim != 3
check outside oftimesteps_xaxis
, which would fail toexpand_dims(0, ...)
for=False
w/ 2D inputweights_norm
: the case of oneweights
per layer would process incorrectly due to iterating over an expected list, whereget_weights
returns the array itself in case of a single weightMisc: