sampler.h 2.5 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 19 20 21 22
#include <memory>
#include <random>
namespace paddle {
namespace operators {
namespace math {

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

/**
* Sample integers from [0, range).
*/
class Sampler {
 public:
30
  explicit Sampler(int64_t range) : range_(range) {
W
wanghaoshuang 已提交
31 32 33 34
    PADDLE_ENFORCE_GT(range, 0);
    std::random_device r;
    seed_ = r();
  }
35
  explicit Sampler(int64_t range, unsigned int seed)
W
wanghaoshuang 已提交
36 37
      : range_(range), seed_(seed) {
    PADDLE_ENFORCE_GT(range, 0);
38 39 40
  }
  virtual ~Sampler();
  // Sample a single value
41
  virtual int64_t Sample() const = 0;
42
  // The probability that a single call to Sample() returns the given value.
43
  virtual float Probability(int64_t value) const = 0;
44

45
  int64 range() { return range_; }
46 47

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

/**
 * Sample integers from [0, range).
 * And the distribution function is:
 * P(x) = 1 / range
 */
class UniformSampler : public Sampler {
 public:
59
  explicit UniformSampler(int64_t range);
60

61
  explicit UniformSampler(int64_t range, unsigned int seed);
W
wanghaoshuang 已提交
62

63 64 65 66
  ~UniformSampler() override {}

  int64 Sample() const override;

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);
83

84
  explicit LogUniformSampler(int64_t range, unsigned int seed);
W
wanghaoshuang 已提交
85

86 87 88 89
  ~LogUniformSampler() override {}

  int64 Sample() const override;

90
  float Probability(int64_t value) const override;
91 92 93 94 95 96 97

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

98
}  // namespace math
99 100
}  // namespace operators
}  // namespace paddle