-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmin_entropy_loss_op.h
40 lines (32 loc) · 1.11 KB
/
min_entropy_loss_op.h
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
#ifndef CAFFE2_OPERATORS_MIN_ENTROPY_LOSS_OP_H_
#define CAFFE2_OPERATORS_MIN_ENTROPY_LOSS_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 MinEntropyLossOp final : public Operator<Context> {
public:
USE_SIMPLE_CTOR_DTOR(MinEntropyLossOp);
USE_OPERATOR_CONTEXT_FUNCTIONS;
bool RunOnDevice() override;
protected:
// Input: X, label
// Output: Y
static constexpr T kLOG_THRESHOLD() { return static_cast<T>(1e-20); }
};
template <typename T, class Context>
class MinEntropyLossGradientOp final : public Operator<Context> {
public:
USE_SIMPLE_CTOR_DTOR(MinEntropyLossGradientOp);
USE_OPERATOR_CONTEXT_FUNCTIONS;
bool RunOnDevice() override;
protected:
// Input: X, label, dY
// Ouptut: dX. There is no gradient with respect to the label.
static constexpr T kLOG_THRESHOLD() { return static_cast<T>(1e-20); }
static constexpr T kDIFF_THRESHOLD() { return static_cast<T>(1e+4); }
};
} // namespace caffe2
#endif // CAFFE2_OPERATORS_MIN_ENTROPY_LOSS_OP_H_