weightinitializer.java

来自「一个纯java写的神经网络源代码」· Java 代码 · 共 27 行

JAVA
27
字号
/* * WeightInitializer.java * * Created on October 15, 2004, 3:20 PM */package org.joone.engine.weights;import org.joone.engine.Matrix;/** * This interface desribes the methods that needs to be implemented in order to create new  * weight (or bias) initializers. Weight initializers can be set by  using the method  * {@link org.joone.engine.Matrix#setWeightInitializer(WeightInitializer). * * @author  Boris Jansen */public interface WeightInitializer extends java.io.Serializable {        /**     * Initializes weights (biases) represented by the matrix.     *     * @param aMatrix the weights (biases) to be initialized.     */    public void initialize(Matrix aMatrix);}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?