C++ API Reference for Intel® Data Analytics Acceleration Library 2019 Update 4

prediction.h
1 /* file: prediction.h */
2 /*******************************************************************************
3 * Copyright 2014-2019 Intel Corporation.
4 *
5 * This software and the related documents are Intel copyrighted materials, and
6 * your use of them is governed by the express license under which they were
7 * provided to you (License). Unless the License provides otherwise, you may not
8 * use, modify, copy, publish, distribute, disclose or transmit this software or
9 * the related documents without Intel's prior written permission.
10 *
11 * This software and the related documents are provided as is, with no express
12 * or implied warranties, other than those that are expressly stated in the
13 * License.
14 *******************************************************************************/
15 
16 /*
17 //++
18 // Implementation of base classes defining algorithm interface.
19 //--
20 */
21 
22 #ifndef __PREDICTION_H__
23 #define __PREDICTION_H__
24 
25 namespace daal
26 {
27 namespace algorithms
28 {
40 class PredictionContainerIface : public AlgorithmContainerImpl<batch> {};
41 
42 class DistributedPredictionContainerIface : public AlgorithmContainerImpl<distributed> {};
50 class Prediction : public AlgorithmImpl<batch> {};
51 
52 class DistributedPrediction : public AlgorithmImpl<distributed> {};
54 }
55 }
56 #endif
daal::algorithms::DistributedPrediction
Definition: prediction.h:52
daal
Definition: algorithm_base_common.h:31
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:50
daal::algorithms::PredictionContainerIface
Abstract interface class that provides virtual methods to access and run implementations of the algor...
Definition: prediction.h:40
daal::algorithms::DistributedPredictionContainerIface
Definition: prediction.h:42

For more complete information about compiler optimizations, see our Optimization Notice.