Class PointWiseLearningCurve
- java.lang.Object
-
- ai.libs.jaicore.ml.learningcurve.extrapolation.lcnet.PointWiseLearningCurve
-
- All Implemented Interfaces:
LearningCurve
public class PointWiseLearningCurve extends java.lang.Object implements LearningCurve
This class represents a learning curve that gets returned by the LCNet from pybnn
-
-
Constructor Summary
Constructors Constructor Description PointWiseLearningCurve(int dataSetSize, double[] configurations, java.lang.String identifier)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description doublegetCurveValue(double x)Calculates or looks-up the curves value at a given point.
-
-
-
Method Detail
-
getCurveValue
public double getCurveValue(double x)
Description copied from interface:LearningCurveCalculates or looks-up the curves value at a given point.- Specified by:
getCurveValuein interfaceLearningCurve- Parameters:
x- The x value of the point.- Returns:
- The y value of the curve at the given x value.
-
-