Changeset 13961
- Timestamp:
- 06/30/16 14:06:36 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.Algorithms.DataAnalysis.Glmnet/3.4/ElasticNetLinearRegression.cs
r13940 r13961 99 99 } 100 100 101 SymbolicRegressionSolution solution = new SymbolicRegressionSolution(new SymbolicRegressionModel(tree, new SymbolicDataAnalysisExpressionTreeInterpreter()), (IRegressionProblemData)Problem.ProblemData.Clone()); 101 SymbolicRegressionSolution solution = new SymbolicRegressionSolution( 102 new SymbolicRegressionModel(Problem.ProblemData.TargetVariable, tree, new SymbolicDataAnalysisExpressionTreeInterpreter()), 103 (IRegressionProblemData)Problem.ProblemData.Clone()); 102 104 solution.Model.Name = "Elastic-net Linear Regression Model"; 103 105 solution.Name = "Elastic-net Linear Regression Solution";
Note: See TracChangeset
for help on using the changeset viewer.