sampler.h 3.3 KB
Newer Older
1
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserved.
2 3 4 5 6 7 8 9 10 11 12 13 14 15

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

#pragma once
16

17
#include <cstdint>
18 19
#include <memory>
#include <random>
20 21
#include <vector>

22 23
#include "paddle/fluid/platform/enforce.h"

24 25 26 27
namespace paddle {
namespace operators {
namespace math {

W
wanghaoshuang 已提交
28
// TODO(wanghaoshuang): Support for GPU
29 30

/**
L
Leo Chen 已提交
31 32
 * Sample integers from [0, range).
 */
33 34
class Sampler {
 public:
35
  explicit Sampler(int64_t range, unsigned int seed = 0UL) : range_(range) {
36 37 38 39
    PADDLE_ENFORCE_GT(
        range, 0,
        platform::errors::InvalidArgument(
            "Range should be greater than 0, but recevied %d.", range));
40 41 42 43 44 45
    if (seed == 0) {
      std::random_device r;
      seed_ = r();
    } else {
      seed_ = seed;
    }
46
  }
47

48
  virtual ~Sampler();
49

50
  // Sample a single value
51
  virtual int64_t Sample() const = 0;
52

53
  // The probability that a single call to Sample() returns the given value.
54
  virtual float Probability(int64_t value) const = 0;
55

56
  int64_t range() { return range_; }
57 58

 protected:
59
  const int64_t range_;
W
wanghaoshuang 已提交
60
  unsigned int seed_;
61 62 63 64 65 66 67 68 69
};

/**
 * Sample integers from [0, range).
 * And the distribution function is:
 * P(x) = 1 / range
 */
class UniformSampler : public Sampler {
 public:
70
  explicit UniformSampler(int64_t range, unsigned int seed = 0UL);
W
wanghaoshuang 已提交
71

72 73
  ~UniformSampler() override {}

74
  int64_t Sample() const override;
75

76
  float Probability(int64_t value) const override;
77 78 79 80 81 82 83 84 85 86 87 88 89 90

 private:
  const float inv_range_;
  std::shared_ptr<std::mt19937_64> random_engine_;
  std::shared_ptr<std::uniform_int_distribution<>> dist_;
};

/**
 * Sample integers from [0, range).
 * And the distribution function is:
 * P(x) = (1/ln(range+1)) * ln(1 + 1/(x + 1))
 */
class LogUniformSampler : public Sampler {
 public:
91
  explicit LogUniformSampler(int64_t range, unsigned int seed = 0UL);
W
wanghaoshuang 已提交
92

93 94
  ~LogUniformSampler() override {}

95
  int64_t Sample() const override;
96

97
  float Probability(int64_t value) const override;
98 99 100 101 102 103 104

 private:
  const float log_range_;
  std::shared_ptr<std::mt19937_64> random_engine_;
  std::shared_ptr<std::uniform_real_distribution<>> dist_;
};

105 106 107 108 109 110
/**
 * Sample integers from [0, range) from custom distribution.
 */
class CustomSampler : public Sampler {
 public:
  explicit CustomSampler(int64_t range, const float* probabilities,
111
                         const int* alias, const float* alias_probabilities,
112 113 114 115 116 117 118 119 120
                         unsigned int seed = 0UL);

  ~CustomSampler() override {}

  int64_t Sample() const override;

  float Probability(int64_t value) const override;

 private:
121 122 123
  const float* alias_probs_;
  const int* alias_;
  const float* probs_;
124
  const int exceptional_val = -1;
L
Leo Chen 已提交
125
  std::shared_ptr<std::mt19937_64> random_engine_;
126 127 128 129
  std::shared_ptr<std::uniform_real_distribution<>> real_dist_;
  std::shared_ptr<std::uniform_int_distribution<>> int_dist_;
};

130
}  // namespace math
131 132
}  // namespace operators
}  // namespace paddle