24 #ifndef __PREDICTION_H__
25 #define __PREDICTION_H__
42 class PredictionContainerIface :
public AlgorithmContainerImpl<batch> {};
44 class DistributedPredictionContainerIface :
public AlgorithmContainerImpl<distributed> {};
52 class Prediction :
public AlgorithmImpl<batch> {};
54 class DistributedPrediction :
public AlgorithmImpl<distributed> {};
daal::algorithms::DistributedPredictionContainerIface
Definition: prediction.h:44
daal::algorithms::PredictionContainerIface
Abstract interface class that provides virtual methods to access and run implementations of the algor...
Definition: prediction.h:42
daal::algorithms::DistributedPrediction
Definition: prediction.h:54
daal::algorithms::Prediction
Provides prediction methods depending on the model such as linear_regression::Model. The methods of the class support different computation modes: batch, distributed, and online(see ComputeMode). Classes that implement specific algorithms of the model based data prediction are derived classes of the Prediction class. The class additionally provides virtual methods for validation of input and output parameters of the algorithms.
Definition: prediction.h:52