Free cookie consent management tool by TermsFeed Policy Generator

source: branches/M5Regression/HeuristicLab.Algorithms.DataAnalysis/3.4/M5Regression/Pruning/HoldoutLeafPruning.cs @ 15470

Last change on this file since 15470 was 15470, checked in by bwerth, 6 years ago

#2847 worked on M5Regression

File size: 2.7 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2017 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.Collections.Generic;
23using HeuristicLab.Common;
24using HeuristicLab.Core;
25using HeuristicLab.Data;
26using HeuristicLab.Parameters;
27using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
28using HeuristicLab.Problems.DataAnalysis;
29
30namespace HeuristicLab.Algorithms.DataAnalysis {
31  [StorableClass]
32  [Item("HoldoutLeafPruning", "Postpruning via a holdout set. Pruning is done using the model type of the leaf models")]
33  public class HoldoutLeafPruning : PruningBase {
34    private const string HoldoutSizeParameterName = "HoldoutSize";
35    public IFixedValueParameter<PercentValue> HoldoutSizeParameter {
36      get { return Parameters[HoldoutSizeParameterName] as IFixedValueParameter<PercentValue>; }
37    }
38    public double HoldoutSize {
39      get { return HoldoutSizeParameter.Value.Value; }
40    }
41
42    #region Constructors & Cloning
43    [StorableConstructor]
44    protected HoldoutLeafPruning(bool deserializing) : base(deserializing) { }
45    protected HoldoutLeafPruning(HoldoutLeafPruning original, Cloner cloner) : base(original, cloner) { }
46    public HoldoutLeafPruning() : base() {
47      Parameters.Add(new FixedValueParameter<PercentValue>(HoldoutSizeParameterName, new PercentValue(0.2)));
48    }
49    public override IDeepCloneable Clone(Cloner cloner) {
50      return new HoldoutLeafPruning(this, cloner);
51    }
52    #endregion
53
54    #region PruningType
55    public override ILeafType<IRegressionModel> ModelType(ILeafType<IRegressionModel> leafType) {
56      return leafType;
57    }
58
59    public override void GenerateHoldOutSet(IReadOnlyList<int> allrows, IRandom random, out IReadOnlyList<int> training, out IReadOnlyList<int> holdout) {
60      training = new List<int>();
61      holdout = new List<int>();
62      foreach (var row in allrows)
63        ((List<int>) (random.NextDouble() < HoldoutSize ? holdout : training)).Add(row);
64    }
65    #endregion
66  }
67}
Note: See TracBrowser for help on using the repository browser.