Free cookie consent management tool by TermsFeed Policy Generator

Changes between Version 9 and Version 10 of UsersSamples


Ignore:
Timestamp:
06/07/10 17:48:57 (14 years ago)
Author:
mkofler
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • UsersSamples

    v9 v10  
    5959 * !BestKnownSolution: The best known solution of this TSP instance (cf. TSP Lib)
    6060 * Coordinates: The x and y coordinates of the cities
    61  * DistanceMatrix: null
     61 * !DistanceMatrix: null
    6262 * Evaluator: !TSPRoundedEuclideanPathEvaluator
    6363 * Maximization: False
     
    100100[=#GPSR]
    101101== Genetic programming for symbolic regression ==
    102 ''A description will follow shortly''
     102
     103'''Algorithm:''' Genetic Algorithm
     104
     105'''Algorithm Parameters:'''
     106
     107'''Problem:''' Symbolic Regression Problem
     108
     109'''Problem Parameters:'''
     110 * !BestKnownQuality: null
     111 * !DataAnalysisProblemData: Data imported from Housing Dataset from UCI Repository (cf. http://archive.ics.uci.edu/ml/datasets/Housing)
     112 * Evaluator: !SymbolicRegressionScaledMeanSquaredErrorEvaluator
     113 * !FunctionTreeGrammar: Addition, Subtraction, Multiplication, Division, Constant, Variable
     114 * !LowerEstimationLimit: -289,08968253968254
     115 * !MaxExpressionDepth: 10
     116 * !MaxExpressionLength: 100
     117 * !MaxFunctionArguments: 0
     118 * !MaxFunctionDefiningBranches: 0
     119 * Maximization: False
     120 * !SolutionCreator: !ProbabilisticTreeCreator
     121 * !SymbolicExpressionTreeInterpreter: -
     122 * !UpperEstimationLimit: 332,91031746031746
    103123
    104124[=#IslandGA]
     
    126146 * !SetSeedRandomly: True
    127147
    128 
    129148'''Problem:''' Travelling Salesman Problem
    130149
     
    141160[=#LSKnapsack]
    142161== Local Search - Knapsack ==
    143 ''A description will follow shortly''
     162
     163'''Problem:''' Knapsack
     164
     165'''Problem Parameters:'''
     166 * !BestKnownQuality: 226
     167 * !BestKnownSolution: Binary Vector
     168 * Evaluator: !KnapsackEvaluator
     169 * !KnapsackCapacity: 134
     170 * Maximization: True
     171 * Penalty: 1
     172 * !SolutionCreator: !RandomBinaryVectorCreator
     173 * Values: The values of the items.
     174 * Weights: The weights of the items.
    144175
    145176[=#SARastrigin]