Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Algorithms.DataAnalysis/3.4/SupportVectorMachine/SupportVectorRegressionSolution.cs @ 6588

Last change on this file since 6588 was 6588, checked in by mkommend, 13 years ago

#1600:

  • Corrected result descriptions in DataAnalysisSolution.
  • Added NMSE results in IRegressionSolution.
  • Split RegressionSolution into a concrete implementation class and an abstract base class RegressionSolutionBase that could also be used for RegressionEnsembleSolutions or CachingRegressionSolutions.
  • Moved calculation of results in specific regression solution implementations (e.g. SymbolicRegressionSolution).
File size: 2.3 KB
RevLine 
[5624]1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2011 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
4 *
5 * This file is part of HeuristicLab.
6 *
7 * HeuristicLab is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * HeuristicLab is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
19 */
20#endregion
21
22using HeuristicLab.Common;
23using HeuristicLab.Core;
24using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
25using HeuristicLab.Problems.DataAnalysis;
26
27namespace HeuristicLab.Algorithms.DataAnalysis {
28  /// <summary>
29  /// Represents a support vector solution for a regression problem which can be visualized in the GUI.
30  /// </summary>
31  [Item("SupportVectorRegressionSolution", "Represents a support vector solution for a regression problem which can be visualized in the GUI.")]
32  [StorableClass]
[5694]33  public sealed class SupportVectorRegressionSolution : RegressionSolution, ISupportVectorMachineSolution {
[5624]34
[5694]35    public new ISupportVectorMachineModel Model {
36      get { return (ISupportVectorMachineModel)base.Model; }
[5717]37      set { base.Model = value; }
[5624]38    }
39
40    [StorableConstructor]
41    private SupportVectorRegressionSolution(bool deserializing) : base(deserializing) { }
42    private SupportVectorRegressionSolution(SupportVectorRegressionSolution original, Cloner cloner)
43      : base(original, cloner) {
44    }
[5649]45    public SupportVectorRegressionSolution(SupportVectorMachineModel model, IRegressionProblemData problemData)
[5624]46      : base(model, problemData) {
[6588]47      RecalculateResults();
[5624]48    }
49
50    public override IDeepCloneable Clone(Cloner cloner) {
51      return new SupportVectorRegressionSolution(this, cloner);
52    }
[6588]53
54    protected override void RecalculateResults() {
55      base.CalculateResults();
56    }
[5624]57  }
58}
Note: See TracBrowser for help on using the repository browser.