Changeset 14929 for branches/PersistenceReintegration/HeuristicLab.Problems.DataAnalysis/3.4/Interfaces/Regression
- Timestamp:
- 05/04/17 19:06:54 (8 years ago)
- Location:
- branches/PersistenceReintegration/HeuristicLab.Problems.DataAnalysis/3.4/Interfaces/Regression
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PersistenceReintegration/HeuristicLab.Problems.DataAnalysis/3.4/Interfaces/Regression/IConfidenceRegressionModel.cs
r14185 r14929 21 21 22 22 using System.Collections.Generic; 23 using HeuristicLab.Persistence; 23 24 24 25 namespace HeuristicLab.Problems.DataAnalysis { 26 [StorableType("4070ddbd-5b2f-4184-9d52-ad997998893d")] 25 27 public interface IConfidenceRegressionModel : IRegressionModel { 26 28 IEnumerable<double> GetEstimatedVariances(IDataset dataset, IEnumerable<int> rows); -
branches/PersistenceReintegration/HeuristicLab.Problems.DataAnalysis/3.4/Interfaces/Regression/IConfidenceRegressionSolution.cs
r14185 r14929 21 21 22 22 using System.Collections.Generic; 23 using HeuristicLab.Persistence; 23 24 24 25 namespace HeuristicLab.Problems.DataAnalysis { 26 [StorableType("feabac62-00e1-4029-8248-3477371affd4")] 25 27 public interface IConfidenceRegressionSolution : IRegressionSolution { 26 28 new IConfidenceRegressionModel Model { get; } -
branches/PersistenceReintegration/HeuristicLab.Problems.DataAnalysis/3.4/Interfaces/Regression/IRegressionEnsembleModel.cs
r13704 r14929 22 22 using System; 23 23 using System.Collections.Generic; 24 using HeuristicLab.Persistence; 25 24 26 namespace HeuristicLab.Problems.DataAnalysis { 27 [StorableType("d91ac416-b3cb-403b-868b-bb3735ffc43f")] 25 28 public interface IRegressionEnsembleModel : IRegressionModel { 26 29 void Add(IRegressionModel model); -
branches/PersistenceReintegration/HeuristicLab.Problems.DataAnalysis/3.4/Interfaces/Regression/IRegressionEnsembleSolution.cs
r14185 r14929 22 22 using System.Collections.Generic; 23 23 using HeuristicLab.Core; 24 using HeuristicLab.Persistence; 25 24 26 namespace HeuristicLab.Problems.DataAnalysis { 27 [StorableType("e2bff9b5-9252-4fd3-9c9e-17dcfea08fbf")] 25 28 public interface IRegressionEnsembleSolution : IRegressionSolution { 26 29 new IRegressionEnsembleModel Model { get; } -
branches/PersistenceReintegration/HeuristicLab.Problems.DataAnalysis/3.4/Interfaces/Regression/IRegressionModel.cs
r14290 r14929 22 22 using System; 23 23 using System.Collections.Generic; 24 using HeuristicLab.Persistence; 24 25 25 26 namespace HeuristicLab.Problems.DataAnalysis { … … 28 29 /// <remarks>All methods and properties in in this interface must be implemented thread safely</remarks> 29 30 /// </summary> 31 [StorableType("f0b77196-b400-49e3-9ccd-6cb15c876ce6")] 30 32 public interface IRegressionModel : IDataAnalysisModel { 31 33 IEnumerable<double> GetEstimatedValues(IDataset dataset, IEnumerable<int> rows); -
branches/PersistenceReintegration/HeuristicLab.Problems.DataAnalysis/3.4/Interfaces/Regression/IRegressionProblem.cs
r14185 r14929 1 #region License Information 1 using HeuristicLab.Persistence; 2 #region License Information 2 3 /* HeuristicLab 3 4 * Copyright (C) 2002-2016 Heuristic and Evolutionary Algorithms Laboratory (HEAL) … … 21 22 22 23 namespace HeuristicLab.Problems.DataAnalysis { 24 [StorableType("157601f4-5832-407f-9f25-69da6fd5f69d")] 23 25 public interface IRegressionProblem : IDataAnalysisProblem<IRegressionProblemData> { 24 26 } -
branches/PersistenceReintegration/HeuristicLab.Problems.DataAnalysis/3.4/Interfaces/Regression/IRegressionProblemData.cs
r14185 r14929 21 21 22 22 using System.Collections.Generic; 23 using HeuristicLab.Persistence; 23 24 24 25 namespace HeuristicLab.Problems.DataAnalysis { 26 [StorableType("4397fd67-f9e7-439e-bfb9-568c27fc66a6")] 25 27 public interface IRegressionProblemData : IDataAnalysisProblemData { 26 28 string TargetVariable { get; set; } -
branches/PersistenceReintegration/HeuristicLab.Problems.DataAnalysis/3.4/Interfaces/Regression/IRegressionSolution.cs
r14185 r14929 21 21 22 22 using System.Collections.Generic; 23 using HeuristicLab.Persistence; 24 23 25 namespace HeuristicLab.Problems.DataAnalysis { 26 [StorableType("e1786878-1e2c-47dd-a105-45fe86387bb4")] 24 27 public interface IRegressionSolution : IDataAnalysisSolution { 25 28 new IRegressionModel Model { get; }
Note: See TracChangeset
for help on using the changeset viewer.