Changeset 16842 for branches/2847_M5Regression/HeuristicLab.Algorithms.DataAnalysis/3.4/GaussianProcess/MeanFunctions
- Timestamp:
- 04/19/19 11:05:52 (6 years ago)
- Location:
- branches/2847_M5Regression/HeuristicLab.Algorithms.DataAnalysis
- Files:
-
- 8 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/GaussianProcess/MeanFunctions/MeanConst.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.Data; 26 26 using HeuristicLab.Parameters; 27 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;27 using HEAL.Attic; 28 28 29 29 namespace HeuristicLab.Algorithms.DataAnalysis { 30 [Storable Class]30 [StorableType("6E29FC23-D11B-4F32-9101-DB2BF5B2F29E")] 31 31 [Item(Name = "MeanConst", Description = "Constant mean function for Gaussian processes.")] 32 32 public sealed class MeanConst : ParameterizedNamedItem, IMeanFunction { … … 36 36 37 37 [StorableConstructor] 38 private MeanConst( bool deserializing) : base(deserializing) { }38 private MeanConst(StorableConstructorFlag _) : base(_) { } 39 39 private MeanConst(MeanConst original, Cloner cloner) 40 40 : base(original, cloner) { -
branches/2847_M5Regression/HeuristicLab.Algorithms.DataAnalysis/3.4/GaussianProcess/MeanFunctions/MeanLinear.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. … … 26 26 using HeuristicLab.Data; 27 27 using HeuristicLab.Parameters; 28 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;28 using HEAL.Attic; 29 29 30 30 namespace HeuristicLab.Algorithms.DataAnalysis { 31 [Storable Class]31 [StorableType("B5F37A3E-1004-4C24-ADDE-C830757A9ABE")] 32 32 [Item(Name = "MeanLinear", Description = "Linear mean function for Gaussian processes.")] 33 33 public sealed class MeanLinear : ParameterizedNamedItem, IMeanFunction { … … 37 37 38 38 [StorableConstructor] 39 private MeanLinear( bool deserializing) : base(deserializing) { }39 private MeanLinear(StorableConstructorFlag _) : base(_) { } 40 40 private MeanLinear(MeanLinear original, Cloner cloner) 41 41 : base(original, cloner) { -
branches/2847_M5Regression/HeuristicLab.Algorithms.DataAnalysis/3.4/GaussianProcess/MeanFunctions/MeanModel.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.Parameters; 27 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;27 using HEAL.Attic; 28 28 using HeuristicLab.Problems.DataAnalysis; 29 29 30 30 namespace HeuristicLab.Algorithms.DataAnalysis { 31 [Storable Class]31 [StorableType("4A05BC94-CC08-45E0-989A-516B1C1CC956")] 32 32 [Item(Name = "MeanModel", Description = "A mean function for Gaussian processes that uses a regression solution created with a different algorithm to calculate the mean.")] 33 33 // essentially an adaptor which maps from IMeanFunction to IRegressionSolution … … 42 42 43 43 [StorableConstructor] 44 private MeanModel( bool deserializing) : base(deserializing) { }44 private MeanModel(StorableConstructorFlag _) : base(_) { } 45 45 private MeanModel(MeanModel original, Cloner cloner) 46 46 : base(original, cloner) { -
branches/2847_M5Regression/HeuristicLab.Algorithms.DataAnalysis/3.4/GaussianProcess/MeanFunctions/MeanProduct.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. … … 24 24 using HeuristicLab.Common; 25 25 using HeuristicLab.Core; 26 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;26 using HEAL.Attic; 27 27 28 28 namespace HeuristicLab.Algorithms.DataAnalysis { 29 [Storable Class]29 [StorableType("27D33B4E-6100-419E-B4EA-6D5EFDBFF823")] 30 30 [Item(Name = "MeanProduct", Description = "Product of mean functions for Gaussian processes.")] 31 31 public sealed class MeanProduct : Item, IMeanFunction { … … 41 41 42 42 [StorableConstructor] 43 private MeanProduct(bool deserializing) 44 : base(deserializing) { 43 private MeanProduct(StorableConstructorFlag _) : base(_) { 45 44 } 46 45 -
branches/2847_M5Regression/HeuristicLab.Algorithms.DataAnalysis/3.4/GaussianProcess/MeanFunctions/MeanSum.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. … … 24 24 using HeuristicLab.Common; 25 25 using HeuristicLab.Core; 26 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;26 using HEAL.Attic; 27 27 28 28 namespace HeuristicLab.Algorithms.DataAnalysis { 29 [Storable Class]29 [StorableType("E8BB7879-43C7-4B9A-B9AC-C9CC482BC0D7")] 30 30 [Item(Name = "MeanSum", Description = "Sum of mean functions for Gaussian processes.")] 31 31 public sealed class MeanSum : Item, IMeanFunction { … … 40 40 41 41 [StorableConstructor] 42 private MeanSum( bool deserializing) : base(deserializing) { }42 private MeanSum(StorableConstructorFlag _) : base(_) { } 43 43 private MeanSum(MeanSum original, Cloner cloner) 44 44 : base(original, cloner) { -
branches/2847_M5Regression/HeuristicLab.Algorithms.DataAnalysis/3.4/GaussianProcess/MeanFunctions/MeanZero.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. … … 22 22 using HeuristicLab.Common; 23 23 using HeuristicLab.Core; 24 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;24 using HEAL.Attic; 25 25 26 26 namespace HeuristicLab.Algorithms.DataAnalysis { 27 [Storable Class]27 [StorableType("7B76ECDD-A7B1-450F-B542-D25E19480FC5")] 28 28 [Item(Name = "MeanZero", Description = "Constant zero mean function for Gaussian processes.")] 29 29 public sealed class MeanZero : Item, IMeanFunction { 30 30 [StorableConstructor] 31 private MeanZero( bool deserializing) : base(deserializing) { }31 private MeanZero(StorableConstructorFlag _) : base(_) { } 32 32 private MeanZero(MeanZero original, Cloner cloner) 33 33 : base(original, cloner) {
Note: See TracChangeset
for help on using the changeset viewer.