com.github.chen0040.mlp.functions.TransferFunction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-ann-mlp Show documentation
Show all versions of java-ann-mlp Show documentation
Multi-Layer Perceptron with BP learning implemented in Java
package com.github.chen0040.mlp.functions;
import com.github.chen0040.mlp.ann.MLPLayer;
import com.github.chen0040.mlp.ann.MLPNeuron;
/**
* Created by xschen on 21/8/15.
*/
public interface TransferFunction {
double calculate(MLPLayer layer, int j);
double gradient(MLPLayer layer, int j);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy