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 17
#pragma once
#include "paddle/framework/eigen.h"
#include "paddle/framework/op_registry.h"
Y
Yu Yang 已提交
18 19 20 21

namespace paddle {
namespace operators {

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

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

D
dongzhihong 已提交
44
class FullyConnectedOpMaker : public framework::OpProtoAndCheckerMaker {
45
 public:
D
dongzhihong 已提交
46 47
  FullyConnectedOpMaker(framework::OpProto *proto,
                        framework::OpAttrChecker *op_checker)
Y
Yu Yang 已提交
48 49 50 51 52 53
      : 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 已提交
54 55
    AddOutput("before_act", "the before activation output of fc operator")
        .SetTemporary();
Y
Yu Yang 已提交
56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
    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 已提交
72
namespace ops = paddle::operators;
73
REGISTER_OP(fc, ops::FullyConnectedOp, ops::FullyConnectedOpMaker);