sampler.h 3.1 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
#include <cstdint>
17 18
#include <memory>
#include <random>
19 20
#include <vector>

21 22 23 24
namespace paddle {
namespace operators {
namespace math {

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

/**
* Sample integers from [0, range).
*/
class Sampler {
 public:
32 33 34 35 36 37 38 39
  explicit Sampler(int64_t range, unsigned int seed = 0UL) : range_(range) {
    //    PADDLE_ENFORCE_GT(range, 0, "Range should be greater than 0.");
    if (seed == 0) {
      std::random_device r;
      seed_ = r();
    } else {
      seed_ = seed;
    }
40 41 42
  }
  virtual ~Sampler();
  // Sample a single value
43
  virtual int64_t Sample() const = 0;
44
  // The probability that a single call to Sample() returns the given value.
45
  virtual float Probability(int64_t value) const = 0;
46

47
  int64_t range() { return range_; }
48 49

 protected:
50
  const int64_t range_;
W
wanghaoshuang 已提交
51
  unsigned int seed_;
52 53 54 55 56 57 58 59 60
};

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

63 64
  ~UniformSampler() override {}

65
  int64_t Sample() const override;
66

67
  float Probability(int64_t value) const override;
68 69 70 71 72 73 74 75 76 77 78 79 80 81

 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:
82
  explicit LogUniformSampler(int64_t range, unsigned int seed = 0UL);
W
wanghaoshuang 已提交
83

84 85
  ~LogUniformSampler() override {}

86
  int64_t Sample() const override;
87

88
  float Probability(int64_t value) const override;
89 90 91 92 93 94 95

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

96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118
/**
 * Sample integers from [0, range) from custom distribution.
 */
class CustomSampler : public Sampler {
 public:
  explicit CustomSampler(int64_t range, const float* probabilities,
                         unsigned int seed = 0UL);

  ~CustomSampler() override {}

  int64_t Sample() const override;

  float Probability(int64_t value) const override;

 private:
  std::shared_ptr<std::vector<float>> alias_probs_;
  std::shared_ptr<std::vector<int64_t>> alias_;
  std::shared_ptr<std::vector<float>> probs_;
  std::shared_ptr<std::mt19937_64> random_engine_;
  std::shared_ptr<std::uniform_real_distribution<>> real_dist_;
  std::shared_ptr<std::uniform_int_distribution<>> int_dist_;
};

119
}  // namespace math
120 121
}  // namespace operators
}  // namespace paddle