Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/04/17 17:19:35 (7 years ago)
Author:
gkronber
Message:

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/PersistenceReintegration/HeuristicLab.Algorithms.DataAnalysis/3.4/GaussianProcess/GaussianProcessRegressionSolutionCreator.cs

    r14899 r14927  
    2626using HeuristicLab.Optimization;
    2727using HeuristicLab.Parameters;
    28 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     28using HeuristicLab.Persistence;
    2929using HeuristicLab.Problems.DataAnalysis;
    3030
    3131namespace HeuristicLab.Algorithms.DataAnalysis {
    32   [StorableClass]
     32  [StorableType("10c3a797-39c0-4a1d-9e55-db363410d4ac")]
    3333  [Item(Name = "GaussianProcessRegressionSolutionCreator",
    3434    Description = "Creates a Gaussian process solution from a trained model.")]
     
    109109                                 "The Pearson's R² of the Gaussian process solution on the test partition.",
    110110                                 new DoubleValue(s.TestRSquared)));
    111           results.Add(new Result(NegLogPredictiveProbability, 
    112                                  "The leave-one-out-cross-validation negative log predictive probability.", 
     111          results.Add(new Result(NegLogPredictiveProbability,
     112                                 "The leave-one-out-cross-validation negative log predictive probability.",
    113113                                 new DoubleValue(m.NegativeLooPredictiveProbability)));
    114114        } else {
Note: See TracChangeset for help on using the changeset viewer.