3#if _MSC_VER >= 1900 && defined(_M_X64)
5#include "ComputationalGraphAugmentationForClassifier.h"
11 class CAugmentationParameters;
14 class CInternalAugmentationForGAN;
17 class FL_EXPORT CComputationalGraphAugmentationForGAN :
public CComputationalGraphAugmentationForClassifier<T>
20 CComputationalGraphAugmentationForGAN();
23 CComputationalGraphAugmentationForGAN(
const CComputationalGraphAugmentationForGAN<T>& cg);
27 CComputationalGraphAugmentationForGAN(
const CComputationalBase<T>& cbOperand,
const CAugmentationParameters& apParams);
28 CComputationalGraphAugmentationForGAN(
const CComputationalBase<T>& cbOperand,
const CAugmentationParameters* pApParams);
29 virtual ~CComputationalGraphAugmentationForGAN();
31 virtual CComputationalBase<T>* Clone()
const override;
33 DeclareGetClassType();
34 SupportToDuplicateObjectWithoutCreateNewObject(CComputationalGraphAugmentationForGAN, *
this);
38 DeclareGetSignletonObject(CComputationalGraphAugmentationForGAN);
42 template <
typename T>
friend class CInternalAugmentationForGAN;
45 #define CCGFAugmentationGAN(...) (*(new CComputationalGraphAugmentationForGAN<float>(__VA_ARGS__)))
46 #define CCGDAugmentationGAN(...) (*(new CComputationalGraphAugmentationForGAN<double>(__VA_ARGS__)))
48 #define CCGTAugmentationGAN(T, ...) (*(new CComputationalGraphAugmentationForGAN<T>(__VA_ARGS__)))