Changeset 16842 for branches/2847_M5Regression/HeuristicLab.Algorithms.DataAnalysis/3.4/BaselineClassifiers/ZeroR.cs
- Timestamp:
- 04/19/19 11:05:52 (6 years ago)
- Location:
- branches/2847_M5Regression/HeuristicLab.Algorithms.DataAnalysis
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2847_M5Regression/HeuristicLab.Algorithms.DataAnalysis
- Property svn:mergeinfo changed
-
branches/2847_M5Regression/HeuristicLab.Algorithms.DataAnalysis/3.4
- Property svn:mergeinfo changed
-
branches/2847_M5Regression/HeuristicLab.Algorithms.DataAnalysis/3.4/BaselineClassifiers/ZeroR.cs
r16538 r16842 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 25 25 using HeuristicLab.Core; 26 26 using HeuristicLab.Optimization; 27 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;27 using HEAL.Attic; 28 28 using HeuristicLab.Problems.DataAnalysis; 29 29 … … 33 33 /// </summary> 34 34 [Item("ZeroR Classification", "The simplest possible classifier, ZeroR always predicts the majority class.")] 35 [Storable Class]35 [StorableType("A2C4BA0A-008B-44EB-B93A-3B53B867F0EA")] 36 36 public sealed class ZeroR : FixedDataAnalysisAlgorithm<IClassificationProblem> { 37 37 38 38 [StorableConstructor] 39 private ZeroR( bool deserializing) : base(deserializing) { }39 private ZeroR(StorableConstructorFlag _) : base(_) { } 40 40 private ZeroR(ZeroR original, Cloner cloner) 41 41 : base(original, cloner) {
Note: See TracChangeset
for help on using the changeset viewer.