Modified the way to set the initial values of the sigmas (and stdevs)
so that they can be scaled to the range of each variable (by adding a "%" after the value in the parameter file) See also the examples in tutorial/Lesson4
This commit is contained in:
parent
ce560e5bfa
commit
835a14e8ff
2 changed files with 76 additions and 28 deletions
|
|
@ -58,8 +58,41 @@ class eoEsChromInit : public eoRealInitBounded<EOT>
|
||||||
public :
|
public :
|
||||||
typedef typename EOT::Fitness FitT;
|
typedef typename EOT::Fitness FitT;
|
||||||
|
|
||||||
eoEsChromInit(eoRealVectorBounds& _bounds, double _sigma = 0.3) :
|
/** Ctor: @param
|
||||||
eoRealInitBounded<EOT>(_bounds), sigma(_sigma) {}
|
* eoRealVectorBounds& _bounds : bounds for uniform initialization
|
||||||
|
* double _sigma : initial value for the stddev
|
||||||
|
* bool _to_scale : wether sigma should be multiplied by the range of each variable
|
||||||
|
* added December 2004 - MS (together with the whole comment :-)
|
||||||
|
*/
|
||||||
|
eoEsChromInit(eoRealVectorBounds& _bounds, double _sigma = 0.3, bool _to_scale=false) :
|
||||||
|
eoRealInitBounded<EOT>(_bounds)
|
||||||
|
{
|
||||||
|
// a bit of pre-computations, to ave time later (even if some are useless)
|
||||||
|
|
||||||
|
// first, the case of one unique sigma
|
||||||
|
if (_to_scale) // sigma is scaled by the average range (if that means anything!)
|
||||||
|
{
|
||||||
|
double scaleUnique = 0;
|
||||||
|
for (unsigned i=0; i<size(); i++)
|
||||||
|
scaleUnique += theBounds().range(i);
|
||||||
|
scaleUnique /= size();
|
||||||
|
uniqueSigma = _sigma * scaleUnique;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
uniqueSigma = _sigma;
|
||||||
|
|
||||||
|
// now the case of a vector of sigmas
|
||||||
|
// first allocate
|
||||||
|
lesSigmas.resize(size()); // size() is the size of the bounds (see eoRealInitBounded)
|
||||||
|
|
||||||
|
for (unsigned i=0; i<size(); i++)
|
||||||
|
if (_to_scale) // each sigma is scaled by the range of the corresponding variable
|
||||||
|
{
|
||||||
|
lesSigmas[i] = _sigma * theBounds().range(i);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
lesSigmas[i] = _sigma;
|
||||||
|
}
|
||||||
|
|
||||||
void operator()(EOT& _eo)
|
void operator()(EOT& _eo)
|
||||||
{
|
{
|
||||||
|
|
@ -69,55 +102,45 @@ public :
|
||||||
}
|
}
|
||||||
|
|
||||||
// accessor to sigma
|
// accessor to sigma
|
||||||
double sigmaInit() {return sigma;}
|
// double sigmaInit() {return sigma;}
|
||||||
|
|
||||||
private :
|
private :
|
||||||
|
|
||||||
// No adaptive mutation at all
|
// No adaptive mutation at all
|
||||||
void create_self_adapt(eoReal<FitT>& result)// nothing to do here ...
|
void create_self_adapt(eoReal<FitT>&)// nothing to do here ...
|
||||||
{ }
|
{ }
|
||||||
|
|
||||||
// Adaptive mutation through a unique sigma
|
// Adaptive mutation through a unique sigma
|
||||||
void create_self_adapt(eoEsSimple<FitT>& result)
|
void create_self_adapt(eoEsSimple<FitT>& result)
|
||||||
{
|
{
|
||||||
// sigma is scaled by the average range (if that means anything!)
|
// pre-computed in the Ctor
|
||||||
result.stdev = sigma;
|
result.stdev = uniqueSigma;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Adaptive mutation through a std::vector of sigmas
|
// Adaptive mutation through a std::vector of sigmas
|
||||||
void create_self_adapt(eoEsStdev<FitT>& result)
|
void create_self_adapt(eoEsStdev<FitT>& result)
|
||||||
{
|
{
|
||||||
unsigned theSize = eoRealInitBounded<EOT>::size();
|
result.stdevs = lesSigmas;
|
||||||
result.stdevs.resize(theSize);
|
|
||||||
for (unsigned i = 0; i < theSize; ++i)
|
|
||||||
{
|
|
||||||
// should we scale sigmas to the corresponding object variable range?
|
|
||||||
result.stdevs[i] = sigma;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Adaptive mutation through a whole correlation matrix
|
// Adaptive mutation through a whole correlation matrix
|
||||||
void create_self_adapt(eoEsFull<FitT>& result)
|
void create_self_adapt(eoEsFull<FitT>& result)
|
||||||
{
|
{
|
||||||
unsigned i, theSize = eoRealInitBounded<EOT>::size();
|
// first the stdevs (pre-computed in the Ctor)
|
||||||
|
result.stdevs = lesSigmas;
|
||||||
result.stdevs.resize(theSize);
|
unsigned int theSize = size();
|
||||||
for (i = 0; i < theSize; ++i)
|
|
||||||
{
|
|
||||||
// should we scale sigmas to the corresponding object variable range?
|
|
||||||
result.stdevs[i] = sigma;
|
|
||||||
}
|
|
||||||
|
|
||||||
// nb of rotation angles: N*(N-1)/2 (in general!)
|
// nb of rotation angles: N*(N-1)/2 (in general!)
|
||||||
result.correlations.resize(theSize*(theSize - 1) / 2);
|
result.correlations.resize(theSize*(theSize - 1) / 2);
|
||||||
for (i = 0; i < result.correlations.size(); ++i)
|
for (unsigned i=0; i<result.correlations.size(); ++i)
|
||||||
{
|
{
|
||||||
// uniform in [-PI, PI)
|
// uniform in [-PI, PI)
|
||||||
result.correlations[i] = rng.uniform(2 * M_PI) - M_PI;
|
result.correlations[i] = rng.uniform(2 * M_PI) - M_PI;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
double sigma; // initial value for sigmas
|
// the DATA
|
||||||
|
double uniqueSigma; // initial value in case of a unique sigma
|
||||||
|
std::vector<double> lesSigmas; // initial values in case of a vector fo sigmas
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
||||||
|
|
@ -27,6 +27,12 @@
|
||||||
#ifndef _make_genotype_h
|
#ifndef _make_genotype_h
|
||||||
#define _make_genotype_h
|
#define _make_genotype_h
|
||||||
|
|
||||||
|
#ifdef HAVE_SSTREAM
|
||||||
|
#include <sstream>
|
||||||
|
#else
|
||||||
|
#include <strstream>
|
||||||
|
#endif
|
||||||
|
|
||||||
#include <es/eoReal.h>
|
#include <es/eoReal.h>
|
||||||
#include <es/eoEsChromInit.h>
|
#include <es/eoEsChromInit.h>
|
||||||
#include <utils/eoRealVectorBounds.h>
|
#include <utils/eoRealVectorBounds.h>
|
||||||
|
|
@ -72,14 +78,33 @@ eoEsChromInit<EOT> & do_make_genotype(eoParser& _parser, eoState& _state, EOT)
|
||||||
|
|
||||||
// now some initial value for sigmas - even if useless?
|
// now some initial value for sigmas - even if useless?
|
||||||
// shoudl be used in Normal mutation
|
// shoudl be used in Normal mutation
|
||||||
eoValueParam<double>& sigmaParam = _parser.getORcreateParam(0.3, "sigmaInit", "Initial value for Sigma(s)", 's',"Genotype Initialization");
|
std::string & sigmaString = _parser.getORcreateParam(std::string("0.3"), "sigmaInit",
|
||||||
|
"Initial value for Sigmas (with a '%' -> scaled by the range of each variable)",
|
||||||
|
's',"Genotype Initialization").value();
|
||||||
|
|
||||||
|
// check for %
|
||||||
|
bool to_scale = false; // == no %
|
||||||
|
size_t pos = sigmaString.find('%');
|
||||||
|
if (pos < sigmaString.size()) // found a %
|
||||||
|
{
|
||||||
|
to_scale = true;
|
||||||
|
sigmaString.resize(pos); // get rid of %
|
||||||
|
}
|
||||||
|
|
||||||
|
#ifdef HAVE_SSTREAM
|
||||||
|
std::istringstream is(sigmaString);
|
||||||
|
#else
|
||||||
|
std::istrstream is(sigmaString.c_str());
|
||||||
|
#endif
|
||||||
|
double sigma;
|
||||||
|
is >> sigma;
|
||||||
|
|
||||||
// minimum check
|
// minimum check
|
||||||
if ( (sigmaParam.value() < 0) )
|
if ( (sigma < 0) )
|
||||||
throw std::runtime_error("Invalid sigma");
|
throw std::runtime_error("Negative sigma in make_genotype");
|
||||||
|
|
||||||
eoEsChromInit<EOT> * init =
|
eoEsChromInit<EOT> * init =
|
||||||
new eoEsChromInit<EOT>(boundsParam.value(), sigmaParam.value());
|
new eoEsChromInit<EOT>(boundsParam.value(), sigma, to_scale);
|
||||||
// satore in state
|
// satore in state
|
||||||
_state.storeFunctor(init);
|
_state.storeFunctor(init);
|
||||||
return *init;
|
return *init;
|
||||||
|
|
|
||||||
Reference in a new issue