sampler.h 3.2 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 24 25
namespace paddle {
namespace operators {
namespace math {

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

/**
* Sample integers from [0, range).
*/
class Sampler {
 public:
33 34 35 36 37 38 39 40
  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;
    }
41
  }
42

43
  virtual ~Sampler();
44

45
  // Sample a single value
46
  virtual int64_t Sample() const = 0;
47

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

51
  int64_t range() { return range_; }
52 53

 protected:
54
  const int64_t range_;
W
wanghaoshuang 已提交
55
  unsigned int seed_;
56 57 58 59 60 61 62 63 64
};

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

67 68
  ~UniformSampler() override {}

69
  int64_t Sample() const override;
70

71
  float Probability(int64_t value) const override;
72 73 74 75 76 77 78 79 80 81 82 83 84 85

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

88 89
  ~LogUniformSampler() override {}

90
  int64_t Sample() const override;
91

92
  float Probability(int64_t value) const override;
93 94 95 96 97 98 99

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

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

  ~CustomSampler() override {}

  int64_t Sample() const override;

  float Probability(int64_t value) const override;

 private:
116 117 118
  const float* alias_probs_;
  const int* alias_;
  const float* probs_;
119
  const int exceptional_val = -1;
120
  std::shared_ptr<std::mt19937> random_engine_;
121 122 123 124
  std::shared_ptr<std::uniform_real_distribution<>> real_dist_;
  std::shared_ptr<std::uniform_int_distribution<>> int_dist_;
};

125
}  // namespace math
126 127
}  // namespace operators
}  // namespace paddle