Interface IRerunnableSamplingAlgorithmFactory<I,D extends IDataset<I>,A extends ASamplingAlgorithm<I,D>>
-
- Type Parameters:
I- Type of the dataset instances.A- Type of the sampling algorithm that will be created.
- All Superinterfaces:
ISamplingAlgorithmFactory<I,D,A>
- All Known Implementing Classes:
CaseControlSamplingFactory,GmeansSamplingFactory,KmeansSamplingFactory,LocalCaseControlSamplingFactory,OSMACSamplingFactory,StratifiedSamplingFactory,SystematicSamplingFactory
public interface IRerunnableSamplingAlgorithmFactory<I,D extends IDataset<I>,A extends ASamplingAlgorithm<I,D>> extends ISamplingAlgorithmFactory<I,D,A>
Extension of the ISamplingAlgorithmFactory for sampling algorithms that can re-use informations from a previous run of the Sampling algorithm.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidsetPreviousRun(A previousRun)Set the previous run of the sampling algorithm, if one occurred, can be set here to get data from it.-
Methods inherited from interface ai.libs.jaicore.ml.core.dataset.sampling.inmemory.factories.interfaces.ISamplingAlgorithmFactory
getAlgorithm
-
-
-
-
Method Detail
-
setPreviousRun
void setPreviousRun(A previousRun)
Set the previous run of the sampling algorithm, if one occurred, can be set here to get data from it.- Parameters:
previousRun- Algorithm object of the previous of the sampling algorithm.
-
-