sampling_id_op.cc 3.1 KB
Newer Older
T
tangwei12 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
/* Copyright (c) 2018 PaddlePaddle Authors. All Rights Reserved.

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. */

T
tangwei12 已提交
15
#include "paddle/fluid/operators/sampling_id_op.h"
T
tangwei12 已提交
16 17 18 19 20 21 22 23 24 25

namespace paddle {
namespace operators {

using Tensor = framework::Tensor;

class SamplingIdOp : public framework::OperatorWithKernel {
 public:
  using framework::OperatorWithKernel::OperatorWithKernel;

T
tangwei12 已提交
26
  void InferShape(framework::InferShapeContext* ctx) const override {
27 28 29 30 31 32 33
    OP_INOUT_CHECK(ctx->HasInput("X"), "Input", "X", "SampleIn");
    OP_INOUT_CHECK(ctx->HasOutput("Out"), "Output", "X", "SampleOut");
    PADDLE_ENFORCE_LT(
        ctx->Attrs().Get<float>("min"), ctx->Attrs().Get<float>("max"),
        platform::errors::InvalidArgument(
            "min must less then max, but here min is %f, max is %f",
            ctx->Attrs().Get<float>("min"), ctx->Attrs().Get<float>("max")));
T
tangwei12 已提交
34 35

    auto input_dims = ctx->GetInputDim("X");
36 37 38 39 40
    PADDLE_ENFORCE_EQ(
        input_dims.size(), 2,
        platform::errors::InvalidArgument(
            "Input(X, Filter) should be 2-D tensor. But X dim is %d",
            input_dims.size()));
T
tangwei12 已提交
41

T
tangwei12 已提交
42 43
    auto dim0 = input_dims[0];
    framework::DDim dims = framework::make_ddim({dim0});
T
tangwei12 已提交
44 45 46 47 48 49 50 51 52 53 54
    ctx->SetOutputDim("Out", dims);
    ctx->ShareLoD("X", "Out");
  }
};

class SamplingIdOpMaker : public framework::OpProtoAndCheckerMaker {
 public:
  void Make() override {
    AddInput("X",
             "The input tensor of softmax. "
             "2-D with shape [batch_size, input_feature_dimensions].");
T
tangwei12 已提交
55
    AddOutput("Out", "SamplingId data tensor.");
T
tangwei12 已提交
56 57
    AddComment(R"DOC(
SamplingId Operator.
T
tangwei12 已提交
58
A layer for sampling id from multinomial distribution from the
T
tangwei12 已提交
59
 input. Sampling one id for one sample.)DOC");
G
fix  
gongweibao 已提交
60
    AddAttr<float>("min", "Minimum value of random. (float, default 0.0).")
T
tangwei12 已提交
61
        .SetDefault(0.0f);
G
fix  
gongweibao 已提交
62
    AddAttr<float>("max", "Maximun value of random. (float, default 1.0).")
T
tangwei12 已提交
63
        .SetDefault(1.0f);
G
fix  
gongweibao 已提交
64 65 66 67
    AddAttr<int>(
        "seed",
        "Random seed used for the random number engine. "
        "0 means use a seed generated by the system."
68
        "Note that if seed is not 0, this operator will "
G
fix  
gongweibao 已提交
69
        "generate the same random numbers every time. (int, default 0).")
T
tangwei12 已提交
70
        .SetDefault(0);
T
tangwei12 已提交
71 72 73 74 75 76
  }
};
}  // namespace operators
}  // namespace paddle

namespace ops = paddle::operators;
H
hong 已提交
77 78 79 80
REGISTER_OPERATOR(
    sampling_id, ops::SamplingIdOp, ops::SamplingIdOpMaker,
    paddle::framework::EmptyGradOpMaker<paddle::framework::OpDesc>,
    paddle::framework::EmptyGradOpMaker<paddle::imperative::OpBase>);
T
tangwei12 已提交
81

T
tangwei12 已提交
82 83
REGISTER_OP_CPU_KERNEL(sampling_id, paddle::operators::SamplingIdKernel<float>,
                       paddle::operators::SamplingIdKernel<double>);