Changes between Version 9 and Version 10 of UsersSamples
- Timestamp:
- 06/07/10 17:48:57 (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
UsersSamples
v9 v10 59 59 * !BestKnownSolution: The best known solution of this TSP instance (cf. TSP Lib) 60 60 * Coordinates: The x and y coordinates of the cities 61 * DistanceMatrix: null61 * !DistanceMatrix: null 62 62 * Evaluator: !TSPRoundedEuclideanPathEvaluator 63 63 * Maximization: False … … 100 100 [=#GPSR] 101 101 == 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 103 123 104 124 [=#IslandGA] … … 126 146 * !SetSeedRandomly: True 127 147 128 129 148 '''Problem:''' Travelling Salesman Problem 130 149 … … 141 160 [=#LSKnapsack] 142 161 == 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. 144 175 145 176 [=#SARastrigin]