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

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

A
Abhinav Arora 已提交
15
#include "paddle/fluid/operators/math/sampler.h"
16 17 18 19
#include <iostream>
#include <queue>
#include <utility>
#include <vector>
20 21

namespace paddle {
22 23
namespace operators {
namespace math {
24 25 26

Sampler::~Sampler() {}

27 28 29
UniformSampler::UniformSampler(int64_t range, unsigned int seed)
    : Sampler(range, seed), inv_range_(1.0 / (range + 1)) {
  random_engine_ = std::make_shared<std::mt19937_64>(seed_);
W
wanghaoshuang 已提交
30 31 32
  dist_ = std::make_shared<std::uniform_int_distribution<>>(0, range);
}

33
int64_t UniformSampler::Sample() const { return (*dist_)(*random_engine_); }
34

35
float UniformSampler::Probability(int64_t value) const { return inv_range_; }
36

37
LogUniformSampler::LogUniformSampler(int64_t range, unsigned int seed)
W
wanghaoshuang 已提交
38
    : Sampler(range, seed), log_range_(log(range + 1)) {
39
  random_engine_ = std::make_shared<std::mt19937_64>(seed_);
W
wanghaoshuang 已提交
40 41
  dist_ = std::make_shared<std::uniform_real_distribution<>>(0, 1);
}
42 43

int64_t LogUniformSampler::Sample() const {
44 45 46 47
  // Got Log Uniform distribution from uniform distribution by
  // inverse_transform_sampling method
  // More details:
  // https://wanghaoshuang.github.io/2017/11/Log-uniform-distribution-sampler/
48 49
  const int64_t value =
      static_cast<int64_t>(exp((*dist_)(*random_engine_) * log_range_)) - 1;
50 51 52 53 54
  // Mathematically, value should be <= range_, but might not be due to some
  // floating point roundoff, so we mod by range_.
  return value % range_;
}

55
float LogUniformSampler::Probability(int64_t value) const {
56 57 58 59 60 61 62
  // Given f(x) = 1/[(x+1) * log_range_]
  // The value's  probability  is integral of f(x) from value to (value + 1)
  // More details:
  // https://wanghaoshuang.github.io/2017/11/Log-uniform-distribution-sampler
  return (log((value + 2.0) / (value + 1.0))) / log_range_;
}

63 64
CustomSampler::CustomSampler(int64_t range, const float *probabilities,
                             const int *alias, const float *alias_probabilities,
65 66
                             unsigned int seed)
    : Sampler(range, seed) {
67
  random_engine_ = std::make_shared<std::mt19937>(seed_);
68 69 70
  real_dist_ = std::make_shared<std::uniform_real_distribution<>>(0, 1);
  int_dist_ = std::make_shared<std::uniform_int_distribution<>>(0, range);

71 72 73
  alias_probs_ = alias_probabilities;
  probs_ = probabilities;
  alias_ = alias;
74 75 76 77 78
}

int64_t CustomSampler::Sample() const {
  auto index = (*int_dist_)(*random_engine_);
  auto p = (*real_dist_)(*random_engine_);
79 80
  if (p > alias_probs_[index]) {
    return alias_[index];
81 82 83 84 85
  } else {
    return index;
  }
}

86
float CustomSampler::Probability(int64_t value) const { return probs_[value]; }
87 88 89

}  // namespace math
}  // namespace operators
90
}  // namespace paddle