1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326
|
# = nelder_mead.rb -
# Minimization- Minimization algorithms on pure Ruby
# Copyright (C) 2010 Claudio Bustos
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
#
# This algorith was adopted and ported into Ruby from Apache-commons
# Math library's NelderMead.java file. Therefore this file is under
# Apache License Version 2.
#
# Nelder Mead Algorithm for Multidimensional minimization
require "#{File.expand_path(File.dirname(__FILE__))}/point_value_pair.rb"
module Minimization
class DirectSearchMinimizer
EPSILON_DEFAULT = 1e-6
MAX_ITERATIONS_DEFAULT = 1000000
attr_reader :x_minimum
attr_reader :f_minimum
attr_reader :epsilon
def initialize(f, start_point, iterate_simplex_ref)
@epsilon = EPSILON_DEFAULT
# Default number of maximum iterations
@max_iterations = MAX_ITERATIONS_DEFAULT
# proc which iterates the simplex
@iterate_simplex_ref = iterate_simplex_ref
@relative_threshold = 100 * @epsilon
@absolute_threshold = @epsilon
@x_minimum = nil
@f_minimum = nil
@f = f
# create and initializ start configurations
if @start_configuration == nil
# sets the start configuration point as unit
self.start_configuration = Array.new(start_point.length) { 1.0 }
end
@iterations = 0
@evaluations = 0
# create the simplex for the first time
build_simplex(start_point)
evaluate_simplex
end
def f(x)
return @f.call(x)
end
def iterate_simplex
return iterate_simplex_ref.call
end
# increment iteration counter by 1
def increment_iterations_counter
@iterations += 1
raise "iteration limit reached" if @iterations > @max_iterations
end
# compares 2 PointValuePair points
def compare(v1, v2)
if v1.value == v2.value
return 0
elsif v1.value > v2.value
return 1
else
return -1
end
end
# checks whether the function is converging
def converging?
# check the convergence in a given direction comparing the previous and current values
def point_converged?(previous, current)
pre = previous.value
curr = current.value
diff = (pre - curr).abs
size = [pre.abs, curr.abs].max
return !((diff <= (size * @relative_threshold)) and (diff <= @absolute_threshold))
end
# returns true if converging is possible atleast in one direction
if @iterations > 0
# given direction is converged
converged = true
0.upto(@simplex.length - 1) do |i|
converged &= !point_converged?(@previous[i], @simplex[i])
end
return !converged
end
# if no iterations were done, convergence undefined
return true
end
# only the relative position of the n vertices with respect
# to the first one are stored
def start_configuration=(steps)
n = steps.length
@start_configuration = Array.new(n) { Array.new(n, 0) }
0.upto(n - 1) do |i|
vertex_i = @start_configuration[i]
0.upto(i) do |j|
raise "equals vertices #{j} and #{j+1} in simplex configuration" if steps[j] == 0.0
0.upto(j) do |k|
vertex_i[k] = steps[k]
end
end
end
end
# Build an initial simplex
# == Parameters:
# * <tt>start_point</tt>: starting point of the minimization search
#
def build_simplex(start_point)
n = start_point.length
raise "dimension mismatch" if n != @start_configuration.length
# set first vertex
@simplex = Array.new(n+1)
@simplex[0] = PointValuePair.new(start_point, Float::NAN)
# set remaining vertices
0.upto(n - 1) do |i|
conf_i = @start_configuration[i]
vertex_i = Array.new(n)
0.upto(n - 1) do |k|
vertex_i[k] = start_point[k] + conf_i[k]
end
@simplex[i + 1] = PointValuePair.new(vertex_i, Float::NAN)
end
end
# Evaluate all the non-evaluated points of the simplex
def evaluate_simplex
# evaluate the objective function at all non-evaluated simplex points
0.upto(@simplex.length - 1) do |i|
vertex = @simplex[i]
point = vertex.point
if vertex.value.nan?
@simplex[i] = PointValuePair.new(point, f(point))
end
end
# sort the simplex from best to worst
@simplex.sort!{ |x1, x2| x1.value <=> x2.value }
end
# Replace the worst point of the simplex by a new point
# == Parameters:
# * <tt>point_value_pair</tt>: point to insert
#
def replace_worst_point(point_value_pair)
n = @simplex.length - 1
0.upto(n - 1) do |i|
if (compare(@simplex[i], point_value_pair) > 0)
point_value_pair, @simplex[i] = @simplex[i], point_value_pair
end
end
@simplex[n] = point_value_pair
end
# Convenience method to minimize
# == Parameters:
# * <tt>start_point</tt>: Starting points
# * <tt>f</tt>: Function to minimize
# == Usage:
# minimizer=Minimization::NelderMead.minimize(proc{|x| (x[0] - 1) ** 2 + (x[1] - 5) ** 2}, [0, 0])
#
def self.minimize(f, start_point)
min=Minimization::NelderMead.new(f, start_point)
while min.converging?
min.iterate
end
return min
end
# Iterate the simplex one step. Use this when iteration needs to be done manually
# == Usage:
# minimizer=Minimization::NelderMead.new(proc{|x| (x[0] - 1) ** 2 + (x[1] - 5) ** 2}, [0, 0])
# while minimizer.converging?
# minimizer.Iterate
# end
# minimizer.x_minimum
# minimizer.f_minimum
#
def iterate
# set previous simplex as the current simplex
@previous = Array.new(@simplex.length)
0.upto(@simplex.length - 1) do |i|
point = @simplex[i].point # clone require?
@previous[i] = PointValuePair.new(point, f(point))
end
# iterate simplex
iterate_simplex
# set results
@x_minimum = @simplex[0].point
@f_minimum = @simplex[0].value
end
end
# = Nelder Mead Minimizer.
# A multidimensional minimization methods.
# == Usage.
# require 'minimization'
# min=Minimization::NelderMead.new(proc {|x| (x[0] - 2)**2 + (x[1] - 5)**2}, [1, 2])
# while min.converging?
# min.iterate
# end
# min.x_minimum
# min.f_minimum
#
class NelderMead < DirectSearchMinimizer
def initialize(f, start_point)
# Reflection coefficient
@rho = 1.0
# Expansion coefficient
@khi = 2.0
# Contraction coefficient
@gamma = 0.5
# Shrinkage coefficient
@sigma = 0.5
super(f, start_point, proc{iterate_simplex})
end
def iterate_simplex
increment_iterations_counter
n = @simplex.length - 1
# the simplex has n+1 point if dimension is n
best = @simplex[0]
secondBest = @simplex[n - 1]
worst = @simplex[n]
x_worst = worst.point
centroid = Array.new(n, 0)
# compute the centroid of the best vertices
# (dismissing the worst point at index n)
0.upto(n - 1) do |i|
x = @simplex[i].point
0.upto(n - 1) do |j|
centroid[j] += x[j]
end
end
scaling = 1.0 / n
0.upto(n - 1) do |j|
centroid[j] *= scaling
end
xr = Array.new(n)
# compute the reflection point
0.upto(n - 1) do |j|
xr[j] = centroid[j] + @rho * (centroid[j] - x_worst[j])
end
reflected = PointValuePair.new(xr, f(xr))
if ((compare(best, reflected) <= 0) && (compare(reflected, secondBest) < 0))
# accept the reflected point
replace_worst_point(reflected)
elsif (compare(reflected, best) < 0)
xe = Array.new(n)
# compute the expansion point
0.upto(n - 1) do |j|
xe[j] = centroid[j] + @khi * (xr[j] - centroid[j])
end
expanded = PointValuePair.new(xe, f(xe))
if (compare(expanded, reflected) < 0)
# accept the expansion point
replace_worst_point(expanded)
else
# accept the reflected point
replace_worst_point(reflected)
end
else
if (compare(reflected, worst) < 0)
xc = Array.new(n)
# perform an outside contraction
0.upto(n - 1) do |j|
xc[j] = centroid[j] + @gamma * (xr[j] - centroid[j])
end
out_contracted = PointValuePair.new(xc, f(xc))
if (compare(out_contracted, reflected) <= 0)
# accept the contraction point
replace_worst_point(out_contracted)
return
end
else
xc = Array.new(n)
# perform an inside contraction
0.upto(n - 1) do |j|
xc[j] = centroid[j] - @gamma * (centroid[j] - x_worst[j])
end
in_contracted = PointValuePair.new(xc, f(xc))
if (compare(in_contracted, worst) < 0)
# accept the contraction point
replace_worst_point(in_contracted)
return
end
end
# perform a shrink
x_smallest = @simplex[0].point
0.upto(@simplex.length - 1) do |i|
x = @simplex[i].get_point_clone
0.upto(n - 1) do |j|
x[j] = x_smallest[j] + @sigma * (x[j] - x_smallest[j])
end
@simplex[i] = PointValuePair.new(x, Float::NAN)
end
evaluate_simplex
end
end
end
end
|