fc_op.cc 2.5 KB
Newer Older
Y
Yu Yang 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserve.

   Licensed under the Apache License, Version 2.0 (the "License");
   you may not use this file except in compliance with the License.
   You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   See the License for the specific language governing permissions and
   limitations under the License. */

D
dongzhihong 已提交
15 16
#include "paddle/operators/net_op.h"

D
dongzhihong 已提交
17 18
#include "paddle/framework/eigen.h"
#include "paddle/framework/op_registry.h"
Y
Yu Yang 已提交
19 20 21 22

namespace paddle {
namespace operators {

D
dongzhihong 已提交
23 24 25
using OpRegistry = framework::OpRegistry;

class FullyConnectedOp : public NetOp {
26
 public:
Y
Yu Yang 已提交
27
  void Init() override {
28 29 30 31
    AddOp(OpRegistry::CreateOp("mul",
                               {
                                   Input("X"), Input("W"),
                               },
32
                               {Output("before_act")}, {}));
Y
Yu Yang 已提交
33
    auto b = Input("b");
34
    if (b != framework::kEmptyVarName) {
35 36
      AddOp(OpRegistry::CreateOp("rowwise_add",
                                 {Output("before_act"), Input("b")},
37
                                 {Output("before_act")}, {}));
Y
Yu Yang 已提交
38 39 40
    }

    auto activation = GetAttr<std::string>("activation");
41 42
    AddOp(OpRegistry::CreateOp(activation, {Output("before_act")},
                               {Output("Y")}, {}));
Y
Yu Yang 已提交
43 44 45 46
    CompleteAddOp(false);
  }
};

D
dongzhihong 已提交
47
class FullyConnectedOpMaker : public framework::OpProtoAndCheckerMaker {
48
 public:
D
dongzhihong 已提交
49 50
  FullyConnectedOpMaker(framework::OpProto *proto,
                        framework::OpAttrChecker *op_checker)
Y
Yu Yang 已提交
51 52 53 54 55 56
      : OpProtoAndCheckerMaker(proto, op_checker) {
    AddInput("X", "the input of fc operator");
    AddInput("W", "the weight of fc operator");
    AddInput("b", "the bias of fc operator");

    AddOutput("Y", "the output of fc operator");
Y
Yu Yang 已提交
57 58
    AddOutput("before_act", "the before activation output of fc operator")
        .SetTemporary();
Y
Yu Yang 已提交
59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
    AddAttr<std::string>("activation", "The activation key for fc layer")
        .SetDefault("sigmoid")
        .InEnum({"sigmoid", "softmax"});

    //! TODO(yuyang18): Complete comment;
    AddComment("FullyConnected Operator");
  }
};
}  // namespace operators
}  // namespace paddle

USE_OP(mul);
USE_OP(rowwise_add);
USE_OP(sigmoid);
USE_OP(softmax);

D
dongzhihong 已提交
75
namespace ops = paddle::operators;
76
REGISTER_OP(fc, ops::FullyConnectedOp, ops::FullyConnectedOpMaker);