deltaruleextender.java

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

JAVA
42
字号
/* * DeltaRuleExtender.java * * Created on September 14, 2004, 9:32 AM */package org.joone.engine.extenders;/** * This abstract class describes the methods needed for a delta rule extender,  * that is, a class that computes / changes the delta (update weight) value  * according to some algorithm. * * @author Boris Jansen */public abstract class DeltaRuleExtender extends LearnerExtender {        /** Creates a new instance of DeltaExtender */    public DeltaRuleExtender() {    }        /**     * Computes the delta value for a bias.     *     * @param currentGradientOuts the back propagated gradients.     * @param j the index of the bias.     * @param aPreviousDelta a delta value calculated by a previous delta extender.     */    public abstract double getDelta(double[] currentGradientOuts, int j, double aPreviousDelta);         /**     * Computes the delta value for a weight.     *     * @param currentInps the forwarded input.     * @param j the input index of the weight.     * @param currentPattern the back propagated gradients.     * @param k the output index of the weight.     * @param aPreviousDelta a delta value calculated by a previous delta extender.     */    public abstract double getDelta(double[] currentInps, int j, double[] currentPattern, int k, double aPreviousDelta);}

⌨️ 快捷键说明

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