Decodes a vector using the specified key.
key: Key used for decoding (ndarray)
input_vec: Vector of size key.shape[1] to be decoded.
Decoded one-hot vector.
Encodes a vector using the specified key.
key: Key used for encoding (ndarray) input_vec: Vector of size key.shape[0] to be encoded.
Encoded {0,1}-vector.
Returns indices of layers that can be sharpened.
model: Keras model with one or more Spiking layers.
Loads a keras model that can contain custom Whetstone layers.
Loads and returns the Keras/Whetstone model from a .h5 file at
filepath
, handling custom layer deserialization for you.
filepath: Path to Keras/Whetstone model which should be a .h5
file produced by model.save(filepath)
.
A keras Model.
Sets the sharpness values of all spiking layers.
model: Keras model with one or more Spiking layers.
values: A list of sharpness values (between 0.0 and 1.0 inclusive) for each
spiking layer in the same order as their indices.
Sets the sharpness of the whole model.
If bottom_up
is True
sharpens in bottom-up order, otherwise
sharpens uniformly.
model: Keras model with one or more Spiking layers.
value: Float, between 0.0 and 1.0 inclusive that specifies the sharpness of the model.
bottom_up: Boolean, if True
then sharpens in bottom-up order, else uniform.