net.sourceforge.cilib.nn.components.WeightInitialisationStrategy Maven / Gradle / Ivy
/** __ __
* _____ _/ /_/ /_ Computational Intelligence Library (CIlib)
* / ___/ / / / __ \ (c) CIRG @ UP
* / /__/ / / / /_/ / http://cilib.net
* \___/_/_/_/_.___/
*/
package net.sourceforge.cilib.nn.components;
import net.sourceforge.cilib.type.types.container.Vector;
/**
* Interface for a strategy class that initialises a set of neuron weights.
*/
public interface WeightInitialisationStrategy {
/**
* Initialise (set the initial values of) the given set of weights.
* @param weights the weights to initialise.
*/
void initialise(Vector weights);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy