#region License Information /* HeuristicLab * Copyright (C) 2002-2008 Heuristic and Evolutionary Algorithms Laboratory (HEAL) * * This file is part of HeuristicLab. * * HeuristicLab is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * HeuristicLab is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with HeuristicLab. If not, see . */ #endregion using HeuristicLab.Core; using HeuristicLab.DataAnalysis; using HeuristicLab.Operators; using HeuristicLab.Modeling; using HeuristicLab.Data; using System.Linq; namespace HeuristicLab.Modeling { public static class DefaultModelAnalyzerOperators { public static IOperator CreatePostProcessingOperator(ModelType modelType) { CombinedOperator op = new CombinedOperator(); op.Name = modelType + " model analyser"; SequentialProcessor seq = new SequentialProcessor(); var modelingResults = ModelingResultCalculators.GetModelingResult(modelType); foreach (var r in modelingResults.Keys) { seq.AddSubOperator(ModelingResultCalculators.CreateModelingResultEvaluator(r)); } op.OperatorGraph.AddOperator(seq); op.OperatorGraph.InitialOperator = seq; return op; } public static IAnalyzerModel PopulateAnalyzerModel(IScope modelScope, IAnalyzerModel model, ModelType modelType) { model.Predictor = modelScope.GetVariableValue("Predictor", false); Dataset ds = modelScope.GetVariableValue("Dataset", true); model.Dataset = ds; model.TargetVariable = modelScope.GetVariableValue("TargetVariable", true).Data; model.Type = ModelType.Regression; model.TrainingSamplesStart = modelScope.GetVariableValue("TrainingSamplesStart", true).Data; model.TrainingSamplesEnd = modelScope.GetVariableValue("TrainingSamplesEnd", true).Data; model.ValidationSamplesStart = modelScope.GetVariableValue("ValidationSamplesStart", true).Data; model.ValidationSamplesEnd = modelScope.GetVariableValue("ValidationSamplesEnd", true).Data; model.TestSamplesStart = modelScope.GetVariableValue("TestSamplesStart", true).Data; model.TestSamplesEnd = modelScope.GetVariableValue("TestSamplesEnd", true).Data; var modelingResults = ModelingResultCalculators.GetModelingResult(modelType); foreach (var r in modelingResults.Keys) { model.ExtractResult(modelScope, r); } model.SetMetaData("NumberOfInputVariables", model.Predictor.GetInputVariables().Count()); return model; } } }