Free cookie consent management tool by TermsFeed Policy Generator

source: branches/PersistenceReintegration/HeuristicLab.Problems.DataAnalysis/3.4/Implementation/ConstantModel.cs @ 14927

Last change on this file since 14927 was 14927, checked in by gkronber, 7 years ago

#2520: changed all usages of StorableClass to use StorableType with an auto-generated GUID (did not add StorableType to other type definitions yet)

File size: 4.2 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2016 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 System;
23using System.Collections.Generic;
24using System.Linq;
25using HeuristicLab.Common;
26using HeuristicLab.Core;
27using HeuristicLab.Data;
28using HeuristicLab.Persistence;
29
30namespace HeuristicLab.Problems.DataAnalysis {
31  [StorableType("2183d7d0-e974-4f5e-ac44-3de60b3eeba4")]
32  [Item("Constant Model", "A model that always returns the same constant value regardless of the presented input data.")]
33  public class ConstantModel : RegressionModel, IClassificationModel, ITimeSeriesPrognosisModel, IStringConvertibleValue {
34    public override IEnumerable<string> VariablesUsedForPrediction { get { return Enumerable.Empty<string>(); } }
35
36
37    [Storable]
38    private readonly double constant;
39    public double Constant {
40      get { return constant; }
41      // setter not implemented because manipulation of the constant is not allowed
42    }
43
44    [StorableConstructor]
45    protected ConstantModel(bool deserializing) : base(deserializing) { }
46    protected ConstantModel(ConstantModel original, Cloner cloner)
47      : base(original, cloner) {
48      this.constant = original.constant;
49    }
50
51    public override IDeepCloneable Clone(Cloner cloner) { return new ConstantModel(this, cloner); }
52
53    public ConstantModel(double constant, string targetVariable)
54      : base(targetVariable) {
55      this.name = ItemName;
56      this.description = ItemDescription;
57      this.constant = constant;
58      this.ReadOnly = true; // changing a constant regression model is not supported
59    }
60
61    public override IEnumerable<double> GetEstimatedValues(IDataset dataset, IEnumerable<int> rows) {
62      return rows.Select(row => Constant);
63    }
64    public IEnumerable<double> GetEstimatedClassValues(IDataset dataset, IEnumerable<int> rows) {
65      return GetEstimatedValues(dataset, rows);
66    }
67    public IEnumerable<IEnumerable<double>> GetPrognosedValues(IDataset dataset, IEnumerable<int> rows, IEnumerable<int> horizons) {
68      return rows.Select(_ => horizons.Select(__ => Constant));
69    }
70
71    public override IRegressionSolution CreateRegressionSolution(IRegressionProblemData problemData) {
72      return new ConstantRegressionSolution(this, new RegressionProblemData(problemData));
73    }
74    public IClassificationSolution CreateClassificationSolution(IClassificationProblemData problemData) {
75      return new ConstantClassificationSolution(this, new ClassificationProblemData(problemData));
76    }
77    public ITimeSeriesPrognosisSolution CreateTimeSeriesPrognosisSolution(ITimeSeriesPrognosisProblemData problemData) {
78      return new TimeSeriesPrognosisSolution(this, new TimeSeriesPrognosisProblemData(problemData));
79    }
80
81    public override string ToString() {
82      return string.Format("Constant: {0}", GetValue());
83    }
84
85    #region IStringConvertibleValue
86    public bool ReadOnly { get; private set; }
87    public bool Validate(string value, out string errorMessage) {
88      throw new NotSupportedException(); // changing a constant regression model is not supported
89    }
90
91    public string GetValue() {
92      return string.Format("{0:E4}", constant);
93    }
94
95    public bool SetValue(string value) {
96      throw new NotSupportedException(); // changing a constant regression model is not supported
97    }
98
99#pragma warning disable 0067
100    public event EventHandler ValueChanged;
101#pragma warning restore 0067
102    #endregion
103
104  }
105}
Note: See TracBrowser for help on using the repository browser.