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