⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 weightinitializer.java

📁 一个纯java写的神经网络源代码
💻 JAVA
字号:
/* * 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -