com.github.chen0040.mlp.functions.AbstractTransferFunction 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;
/**
* Created by xschen on 5/9/15.
*/
public abstract class AbstractTransferFunction implements TransferFunction {
public abstract double calculate(MLPLayer layer, int j);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy