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 sun.reflect.generics.reflectiveObjects.NotImplementedException;
/**
* Created by xschen on 5/9/15.
*/
public abstract class AbstractTransferFunction implements TransferFunction {
public abstract double calculate(double x);
@Override
public Object clone(){
throw new NotImplementedException();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy