sampler.cc 3.4 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"
L
Leo Chen 已提交
16

17
#include <glog/logging.h>
L
Leo Chen 已提交
18

19 20 21 22
#include <iostream>
#include <queue>
#include <utility>
#include <vector>
L
Leo Chen 已提交
23

24
#include "paddle/fluid/framework/generator.h"
25 26

namespace paddle {
27 28
namespace operators {
namespace math {
29 30 31

Sampler::~Sampler() {}

32 33
UniformSampler::UniformSampler(int64_t range, unsigned int seed)
    : Sampler(range, seed), inv_range_(1.0 / (range + 1)) {
L
Leo Chen 已提交
34
  random_engine_ = framework::GetCPURandomEngine(seed_);
W
wanghaoshuang 已提交
35 36 37
  dist_ = std::make_shared<std::uniform_int_distribution<>>(0, range);
}

L
Leo Chen 已提交
38
int64_t UniformSampler::Sample() const { return (*dist_)(*random_engine_); }
39

40
float UniformSampler::Probability(int64_t value) const { return inv_range_; }
41

42
LogUniformSampler::LogUniformSampler(int64_t range, unsigned int seed)
W
wanghaoshuang 已提交
43
    : Sampler(range, seed), log_range_(log(range + 1)) {
L
Leo Chen 已提交
44
  random_engine_ = framework::GetCPURandomEngine(seed_);
W
wanghaoshuang 已提交
45 46
  dist_ = std::make_shared<std::uniform_real_distribution<>>(0, 1);
}
47 48

int64_t LogUniformSampler::Sample() const {
49 50 51 52
  // Got Log Uniform distribution from uniform distribution by
  // inverse_transform_sampling method
  // More details:
  // https://wanghaoshuang.github.io/2017/11/Log-uniform-distribution-sampler/
L
Leo Chen 已提交
53
  auto cur_random = (*dist_)(*random_engine_);
54
  const int64_t value = static_cast<int64_t>(exp(cur_random * log_range_)) - 1;
55 56 57 58 59
  // Mathematically, value should be <= range_, but might not be due to some
  // floating point roundoff, so we mod by range_.
  return value % range_;
}

60
float LogUniformSampler::Probability(int64_t value) const {
61 62 63 64 65 66 67
  // 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_;
}

68 69
CustomSampler::CustomSampler(int64_t range, const float *probabilities,
                             const int *alias, const float *alias_probabilities,
70 71
                             unsigned int seed)
    : Sampler(range, seed) {
L
Leo Chen 已提交
72
  random_engine_ = framework::GetCPURandomEngine(seed_);
73 74 75
  real_dist_ = std::make_shared<std::uniform_real_distribution<>>(0, 1);
  int_dist_ = std::make_shared<std::uniform_int_distribution<>>(0, range);

76 77 78
  alias_probs_ = alias_probabilities;
  probs_ = probabilities;
  alias_ = alias;
79 80 81
}

int64_t CustomSampler::Sample() const {
L
Leo Chen 已提交
82 83
  auto index = (*int_dist_)(*random_engine_);
  auto p = (*real_dist_)(*random_engine_);
84
  if (p > alias_probs_[index]) {
85 86 87 88 89 90 91 92
    int alias = alias_[index];

    if (alias == exceptional_val) {
      LOG(WARNING) << "WARNING: CustomSampler get alias " << exceptional_val;
      return index;
    }

    return alias;
93 94 95 96 97
  } else {
    return index;
  }
}

98
float CustomSampler::Probability(int64_t value) const { return probs_[value]; }
99 100 101

}  // namespace math
}  // namespace operators
102
}  // namespace paddle