-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathkl_op.h.kb
43 lines (33 loc) · 1.06 KB
/
kl_op.h.kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#ifndef CAFFE2_KL_OP_H_
#define CAFFE2_KL_OP_H_
#include "caffe2/core/context.h"
#include "caffe2/core/logging.h"
#include "caffe2/core/operator.h"
#include "caffe2/utils/math.h"
namespace caffe2 {
template <typename T, class Context>
class KLOp final : public Operator<Context> {
public:
USE_OPERATOR_CONTEXT_FUNCTIONS;
KLOp(const OperatorDef& operator_def, Workspace* ws)
: Operator<Context>(operator_def, ws),
ignore_value_(OperatorBase::template GetSingleArgument<float>(
"ignore_value", 0.5)) {}
bool RunOnDevice() override;
protected:
float ignore_value_;
};
template <typename T, class Context>
class KLGradientOp final : public Operator<Context> {
public:
USE_OPERATOR_CONTEXT_FUNCTIONS;
KLGradientOp(const OperatorDef& operator_def, Workspace* ws)
: Operator<Context>(operator_def, ws),
ignore_value_(OperatorBase::template GetSingleArgument<float>(
"ignore_value", 0.5)) {}
bool RunOnDevice() override;
protected:
float ignore_value_;
};
} // namespace caffe2
#endif // CAFFE2_OPERATORS_KL_OP_H_