3#if _MSC_VER >= 1900 && defined(_M_X64)
5#include "ComputationalGraphAugmentationBase.h"
11 class CAugmentationParameters;
14 class CInternalAugmentationForAnomalyDetectionTrain;
17 class FL_EXPORT CComputationalGraphAugmentationForAnomalyDetectionTrain :
public CComputationalGraphAugmentationBase<T>
20 CComputationalGraphAugmentationForAnomalyDetectionTrain();
23 CComputationalGraphAugmentationForAnomalyDetectionTrain(
const CComputationalGraphAugmentationForAnomalyDetectionTrain<T>& cg);
27 CComputationalGraphAugmentationForAnomalyDetectionTrain(
const CComputationalBase<T>& cbOperand,
const CAugmentationParameters& apParams);
28 CComputationalGraphAugmentationForAnomalyDetectionTrain(
const CComputationalBase<T>& cbOperand,
const CAugmentationParameters* pApParams);
29 virtual ~CComputationalGraphAugmentationForAnomalyDetectionTrain();
31 virtual CComputationalBase<T>* Clone()
const override;
34 DeclareGetClassType();
35 SupportToDuplicateObjectWithoutCreateNewObject(CComputationalGraphAugmentationForAnomalyDetectionTrain, *
this);
39 DeclareGetSignletonObject(CComputationalGraphAugmentationForAnomalyDetectionTrain);
43 template <
typename T>
friend class CInternalAugmentationForAnomalyDetectionTrain;
46 #define CCGFAugmentationADTrain(...) (*(new CComputationalGraphAugmentationForAnomalyDetectionTrain<float>(__VA_ARGS__)))
47 #define CCGDAugmentationADTrain(...) (*(new CComputationalGraphAugmentationForAnomalyDetectionTrain<double>(__VA_ARGS__)))
49 #define CCGTAugmentationADTrain(T, ...) (*(new CComputationalGraphAugmentationForAnomalyDetectionTrain<T>(__VA_ARGS__)))