Changeset 8206 for branches/GP-MoveOperators/HeuristicLab.Problems.DataAnalysis.Symbolic.Classification.Views/3.4
- Timestamp:
- 07/03/12 16:46:35 (12 years ago)
- Location:
- branches/GP-MoveOperators
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/GP-MoveOperators
- Property svn:mergeinfo changed
/trunk/sources merged: 8084,8088-8090,8092-8100,8102-8113,8115,8117-8132,8134-8146,8148-8156,8158-8160,8163-8170,8173-8176,8178-8190,8192-8205
- Property svn:mergeinfo changed
-
branches/GP-MoveOperators/HeuristicLab.Problems.DataAnalysis.Symbolic.Classification.Views/3.4/InteractiveSymbolicDiscriminantFunctionClassificationSolutionSimplifierView.cs
r7259 r8206 69 69 var interpreter = Content.Model.Interpreter; 70 70 var dataset = Content.ProblemData.Dataset; 71 var rows = Content.ProblemData.TrainingIndi zes;71 var rows = Content.ProblemData.TrainingIndices; 72 72 string targetVariable = Content.ProblemData.TargetVariable; 73 73 Dictionary<ISymbolicExpressionTreeNode, double> impactValues = new Dictionary<ISymbolicExpressionTreeNode, double>(); … … 113 113 start.AddSubtree((ISymbolicExpressionTreeNode)node.Clone()); 114 114 var interpreter = Content.Model.Interpreter; 115 var rows = Content.ProblemData.TrainingIndi zes;115 var rows = Content.ProblemData.TrainingIndices; 116 116 return interpreter.GetSymbolicExpressionTreeValues(tempTree, Content.ProblemData.Dataset, rows).Median(); 117 117 }
Note: See TracChangeset
for help on using the changeset viewer.