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;
/**
* Created by xschen on 21/8/15.
*/
public interface TransferFunction extends Cloneable {
double calculate(double x);
double gradient(double hx, double y);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy