enumerable_weighted_sample 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +9 -0
- data/.rspec +2 -0
- data/.travis.yml +5 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +21 -0
- data/README.md +85 -0
- data/Rakefile +6 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/enumerable_weighted_sample.gemspec +26 -0
- data/lib/enumerable_weighted_sample/version.rb +3 -0
- data/lib/enumerable_weighted_sample.rb +117 -0
- metadata +99 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 1caa11ffaa50b63e7149ca09a7f9f2c245c74e81
|
4
|
+
data.tar.gz: c35fd8bf89eacdd1174a19ec0a3cea0ac3083888
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 2953706bd28fb4913a847739a9a374e97e4a5a60b4c31874e808c7be9849c8429667e0c6b22df14815ce30e234c9c4ea0f27625b599e348f392688e74b41b3b7
|
7
|
+
data.tar.gz: e1cd1bbde8c3dbb804bc7c4d2c52e7b7f705d77fb401e96230624803f932648032b7f07e329aa9162c586bae0bbf463dcd3a5bad0191eb0d3a7ecb8987b5a079
|
data/.gitignore
ADDED
data/.rspec
ADDED
data/.travis.yml
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2017 Christine Oen
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,85 @@
|
|
1
|
+
# EnumerableWeightedSample
|
2
|
+
|
3
|
+
This gem provides access to functions that will produce a random sample based on weights calculated from a given block.
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Add this line to your application's Gemfile:
|
8
|
+
|
9
|
+
```ruby
|
10
|
+
gem 'enumerable_weighted_sample'
|
11
|
+
```
|
12
|
+
|
13
|
+
And then execute:
|
14
|
+
|
15
|
+
$ bundle
|
16
|
+
|
17
|
+
Or install it yourself as:
|
18
|
+
|
19
|
+
$ gem install enumerable_weighted_sample
|
20
|
+
|
21
|
+
## Usage
|
22
|
+
|
23
|
+
Provides access to the following functions:
|
24
|
+
```ruby
|
25
|
+
|
26
|
+
# Produce a weighted random sampling based on the weights calculated from a
|
27
|
+
# given block. The weight function must produce positive real numbers.
|
28
|
+
# For more, see Ruby Enumerable#max_by and Efraimidis & Spirakis (2005)
|
29
|
+
# http://ruby-doc.org/core-2.2.1/Enumerable.html#method-i-max_by
|
30
|
+
# http://utopia.duth.gr/~pefraimi/research/data/2007EncOfAlg.pdf
|
31
|
+
#
|
32
|
+
# Parameters
|
33
|
+
# - count: The number of samples to return. If not provided, will return a
|
34
|
+
# single sample. Else if specified returns an array of that length.
|
35
|
+
# - block: Function for retrieving the absolute weight of each object.
|
36
|
+
#
|
37
|
+
# Returns a single item if count is not provided, else an array of samples.
|
38
|
+
def weighted_sample_by(count=nil)
|
39
|
+
wraw = each_with_object({}) { |obj, h| h[obj] = yield(obj) }
|
40
|
+
wsum = wraw.values.inject(&:+)
|
41
|
+
weights = wraw.keys.each_with_object({}) { |obj, h| h[obj] = Float(wraw[obj]) / wsum }
|
42
|
+
results = (count || 1).times.map do
|
43
|
+
weights.max_by { |_obj, weight| rand ** (1.0 / weight) }.first
|
44
|
+
end
|
45
|
+
count.nil? ? results.first : results
|
46
|
+
end
|
47
|
+
|
48
|
+
# Variation to invert the weights. Inverting is a bit subjective. I've gone
|
49
|
+
# with a formula that calculates the difference from the original maximum. In
|
50
|
+
# addition, I'm also adding a constant so that the max retains a nonzero
|
51
|
+
# adjusted weight, and items with perfectly equal input weights converge on
|
52
|
+
# equal final probability.
|
53
|
+
def inverse_weighted_sample_by(count=nil)
|
54
|
+
wraw = each_with_object({}) { |obj, h| h[obj] = yield(obj) }
|
55
|
+
wmax = wraw.values.max
|
56
|
+
weights = {}
|
57
|
+
wraw.keys.each { |obj| weights[obj] = wmax - wraw[obj] + 1 }
|
58
|
+
weighted_sample_by(count) { |obj| weights[obj] }
|
59
|
+
end
|
60
|
+
|
61
|
+
# Weighted sample sugar for objects that respond to #weight
|
62
|
+
def weighted_sample(count=nil)
|
63
|
+
weighted_sample_by(count) { |obj| obj.weight }
|
64
|
+
end
|
65
|
+
|
66
|
+
# Inverse weighted sample sugar for objects that respond to #weight
|
67
|
+
def inverse_weighted_sample(count=nil)
|
68
|
+
inverse_weighted_sample_by(count) { |obj| obj.weight }
|
69
|
+
end
|
70
|
+
```
|
71
|
+
|
72
|
+
## Development
|
73
|
+
|
74
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
75
|
+
|
76
|
+
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
77
|
+
|
78
|
+
## Contributing
|
79
|
+
|
80
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/enumerable_weighted_sample.
|
81
|
+
|
82
|
+
|
83
|
+
## License
|
84
|
+
|
85
|
+
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
data/Rakefile
ADDED
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "enumerable_weighted_sample"
|
5
|
+
|
6
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
7
|
+
# with your gem easier. You can also use a different console, if you like.
|
8
|
+
|
9
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
10
|
+
# require "pry"
|
11
|
+
# Pry.start
|
12
|
+
|
13
|
+
require "irb"
|
14
|
+
IRB.start
|
data/bin/setup
ADDED
@@ -0,0 +1,26 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'enumerable_weighted_sample/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "enumerable_weighted_sample"
|
8
|
+
spec.version = EnumerableWeightedSample::VERSION
|
9
|
+
spec.authors = ["Christine Oen"]
|
10
|
+
spec.email = ["oen.christine@gmail.com"]
|
11
|
+
|
12
|
+
spec.summary = %q{Produce a weighted random sampling based on the weights calculated from a given block.}
|
13
|
+
spec.homepage = "https://github.com/omc/enumerable-weighted-sample"
|
14
|
+
spec.license = "MIT"
|
15
|
+
|
16
|
+
spec.files = `git ls-files -z`.split("\x0").reject do |f|
|
17
|
+
f.match(%r{^(test|spec|features)/})
|
18
|
+
end
|
19
|
+
spec.bindir = "exe"
|
20
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
21
|
+
spec.require_paths = ["lib"]
|
22
|
+
|
23
|
+
spec.add_development_dependency "bundler", "~> 1.13"
|
24
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
25
|
+
spec.add_development_dependency "rspec", "~> 3.0"
|
26
|
+
end
|
@@ -0,0 +1,117 @@
|
|
1
|
+
require "enumerable_weighted_sample/version"
|
2
|
+
|
3
|
+
module EnumerableWeightedSample
|
4
|
+
|
5
|
+
# Produce a weighted random sampling based on the weights calculated from a
|
6
|
+
# given block. The weight function must produce positive real numbers.
|
7
|
+
# For more, see Ruby Enumerable#max_by and Efraimidis & Spirakis (2005)
|
8
|
+
# http://ruby-doc.org/core-2.2.1/Enumerable.html#method-i-max_by
|
9
|
+
# http://utopia.duth.gr/~pefraimi/research/data/2007EncOfAlg.pdf
|
10
|
+
#
|
11
|
+
# Parameters
|
12
|
+
# - count: The number of samples to return. If not provided, will return a
|
13
|
+
# single sample. Else if specified returns an array of that length.
|
14
|
+
# - block: Function for retrieving the absolute weight of each object.
|
15
|
+
#
|
16
|
+
# Returns a single item if count is not provided, else an array of samples.
|
17
|
+
def weighted_sample_by(count=nil)
|
18
|
+
wraw = each_with_object({}) { |obj, h| h[obj] = yield(obj) }
|
19
|
+
wsum = wraw.values.inject(&:+)
|
20
|
+
weights = wraw.keys.each_with_object({}) { |obj, h| h[obj] = Float(wraw[obj]) / wsum }
|
21
|
+
results = (count || 1).times.map do
|
22
|
+
weights.max_by { |_obj, weight| rand ** (1.0 / weight) }.first
|
23
|
+
end
|
24
|
+
count.nil? ? results.first : results
|
25
|
+
end
|
26
|
+
|
27
|
+
# Variation to invert the weights. Inverting is a bit subjective. I've gone
|
28
|
+
# with a formula that calculates the difference from the original maximum. In
|
29
|
+
# addition, I'm also adding a constant so that the max retains a nonzero
|
30
|
+
# adjusted weight, and items with perfectly equal input weights converge on
|
31
|
+
# equal final probability.
|
32
|
+
def inverse_weighted_sample_by(count=nil)
|
33
|
+
wraw = each_with_object({}) { |obj, h| h[obj] = yield(obj) }
|
34
|
+
wmax = wraw.values.max
|
35
|
+
weights = {}
|
36
|
+
wraw.keys.each { |obj| weights[obj] = wmax - wraw[obj] + 1 }
|
37
|
+
weighted_sample_by(count) { |obj| weights[obj] }
|
38
|
+
end
|
39
|
+
|
40
|
+
# Weighted sample sugar for objects that respond to #weight
|
41
|
+
def weighted_sample(count=nil)
|
42
|
+
weighted_sample_by(count) { |obj| obj.weight }
|
43
|
+
end
|
44
|
+
|
45
|
+
# Inverse weighted sample sugar for objects that respond to #weight
|
46
|
+
def inverse_weighted_sample(count=nil)
|
47
|
+
inverse_weighted_sample_by(count) { |obj| obj.weight }
|
48
|
+
end
|
49
|
+
|
50
|
+
end
|
51
|
+
|
52
|
+
|
53
|
+
# Run this file directly for some quick and dirty inline testing
|
54
|
+
if $0 == __FILE__
|
55
|
+
|
56
|
+
class Array
|
57
|
+
def summarize
|
58
|
+
each_with_object(Hash.new(0)){|foo,h| h[foo] += 1 }.pretty
|
59
|
+
end
|
60
|
+
def pretty
|
61
|
+
map(&:inspect).join(", ")
|
62
|
+
end
|
63
|
+
end
|
64
|
+
|
65
|
+
class Hash
|
66
|
+
def pretty
|
67
|
+
sort_by{|_k,v|v}.map{|k,v| "#{k}: #{v}" }.join(", ")
|
68
|
+
end
|
69
|
+
end
|
70
|
+
|
71
|
+
class Foo
|
72
|
+
attr_accessor :name, :weight
|
73
|
+
def initialize(name, weight)
|
74
|
+
self.name = name
|
75
|
+
self.weight = weight
|
76
|
+
end
|
77
|
+
def to_s
|
78
|
+
name
|
79
|
+
end
|
80
|
+
def inspect
|
81
|
+
"#{name}: #{weight}"
|
82
|
+
end
|
83
|
+
end
|
84
|
+
|
85
|
+
SAMPLES = 1_000
|
86
|
+
|
87
|
+
things = [
|
88
|
+
Foo.new("foo", 1),
|
89
|
+
Foo.new("bar", 2),
|
90
|
+
Foo.new("baz", 199),
|
91
|
+
Foo.new("bat", 198)
|
92
|
+
]
|
93
|
+
|
94
|
+
# puts things.inverse_weighted_sample(100).summarize
|
95
|
+
|
96
|
+
puts "input weights:"
|
97
|
+
puts things.pretty
|
98
|
+
puts
|
99
|
+
|
100
|
+
puts "#{SAMPLES}x weighted samples:"
|
101
|
+
weighted_things = things.weighted_sample(SAMPLES)
|
102
|
+
puts weighted_things.map(&:name).summarize
|
103
|
+
puts
|
104
|
+
|
105
|
+
puts "#{SAMPLES}x inverse weighted samples:"
|
106
|
+
inverse_weighted_things = things.inverse_weighted_sample(SAMPLES)
|
107
|
+
puts inverse_weighted_things.map(&:name).summarize
|
108
|
+
puts
|
109
|
+
|
110
|
+
puts "#{SAMPLES}x iterative rebalance:"
|
111
|
+
SAMPLES.times do
|
112
|
+
things.weighted_sample.weight -= 1
|
113
|
+
things.inverse_weighted_sample.weight += 1
|
114
|
+
end
|
115
|
+
puts things.pretty
|
116
|
+
|
117
|
+
end
|
metadata
ADDED
@@ -0,0 +1,99 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: enumerable_weighted_sample
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Christine Oen
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2017-05-15 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bundler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.13'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.13'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '10.0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '10.0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rspec
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '3.0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '3.0'
|
55
|
+
description:
|
56
|
+
email:
|
57
|
+
- oen.christine@gmail.com
|
58
|
+
executables: []
|
59
|
+
extensions: []
|
60
|
+
extra_rdoc_files: []
|
61
|
+
files:
|
62
|
+
- ".gitignore"
|
63
|
+
- ".rspec"
|
64
|
+
- ".travis.yml"
|
65
|
+
- Gemfile
|
66
|
+
- LICENSE.txt
|
67
|
+
- README.md
|
68
|
+
- Rakefile
|
69
|
+
- bin/console
|
70
|
+
- bin/setup
|
71
|
+
- enumerable_weighted_sample.gemspec
|
72
|
+
- lib/enumerable_weighted_sample.rb
|
73
|
+
- lib/enumerable_weighted_sample/version.rb
|
74
|
+
homepage: https://github.com/omc/enumerable-weighted-sample
|
75
|
+
licenses:
|
76
|
+
- MIT
|
77
|
+
metadata: {}
|
78
|
+
post_install_message:
|
79
|
+
rdoc_options: []
|
80
|
+
require_paths:
|
81
|
+
- lib
|
82
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
83
|
+
requirements:
|
84
|
+
- - ">="
|
85
|
+
- !ruby/object:Gem::Version
|
86
|
+
version: '0'
|
87
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
88
|
+
requirements:
|
89
|
+
- - ">="
|
90
|
+
- !ruby/object:Gem::Version
|
91
|
+
version: '0'
|
92
|
+
requirements: []
|
93
|
+
rubyforge_project:
|
94
|
+
rubygems_version: 2.5.1
|
95
|
+
signing_key:
|
96
|
+
specification_version: 4
|
97
|
+
summary: Produce a weighted random sampling based on the weights calculated from a
|
98
|
+
given block.
|
99
|
+
test_files: []
|