Uses of Class
org.apache.mahout.ep.Mapping

Packages that use Mapping
org.apache.mahout.ep Provides basic evolutionary optimization using recorded-step mutation. 
 

Uses of Mapping in org.apache.mahout.ep
 

Subclasses of Mapping in org.apache.mahout.ep
static class Mapping.Exponential
           
static class Mapping.Identity
           
static class Mapping.LogLimit
           
static class Mapping.SoftLimit
           
 

Methods in org.apache.mahout.ep that return Mapping
static Mapping Mapping.exponential()
          Maps results to positive values.
static Mapping Mapping.exponential(double scale)
          Maps results to positive values.
 Mapping[] State.getMaps()
           
static Mapping Mapping.identity()
          Maps results to themselves.
static Mapping Mapping.logLimit(double low, double high)
          Maps input to positive values in the open interval (min, max) with 0 going to the geometric mean.
static Mapping Mapping.softLimit(double min, double max)
          Maps input to the open interval (min, max) with 0 going to the mean of min and max.
static Mapping Mapping.softLimit(double min, double max, double scale)
          Maps input to the open interval (min, max) with 0 going to the mean of min and max.
 

Methods in org.apache.mahout.ep with parameters of type Mapping
 void State.setMap(int i, Mapping m)
          Defines the transformation for a parameter.
 void State.setMaps(Mapping[] maps)
           
 

Method parameters in org.apache.mahout.ep with type arguments of type Mapping
 void State.setMaps(Iterable<Mapping> maps)
           
 



Copyright © 2008–2014 The Apache Software Foundation. All rights reserved.