Package com.bayesserver.analysis
Class InSampleAnomalyDetectionOptions
- java.lang.Object
-
- com.bayesserver.analysis.InSampleAnomalyDetectionOptions
-
public final class InSampleAnomalyDetectionOptions extends Object
Options used byInSampleAnomalyDetection.
-
-
Constructor Summary
Constructors Constructor Description InSampleAnomalyDetectionOptions()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description InferenceFactorygetInferenceFactory()Gets the factory which is used to create inference engines during the in-sample anomaly detection process.intgetPartitions()Gets the number of cross validation partitions to use.voidsetInferenceFactory(InferenceFactory value)Sets the factory which is used to create inference engines during the in-sample anomaly detection process.voidsetPartitions(int value)Sets the number of cross validation partitions to use.
-
-
-
Method Detail
-
getPartitions
public int getPartitions()
Gets the number of cross validation partitions to use. The higher the number, the longer the tests will take.
-
setPartitions
public void setPartitions(int value)
Sets the number of cross validation partitions to use. The higher the number, the longer the tests will take.
-
getInferenceFactory
public InferenceFactory getInferenceFactory()
Gets the factory which is used to create inference engines during the in-sample anomaly detection process.
-
setInferenceFactory
public void setInferenceFactory(InferenceFactory value)
Sets the factory which is used to create inference engines during the in-sample anomaly detection process.
-
-