- Timestamp:
- 08/05/16 17:40:11 (8 years ago)
- Location:
- branches/symbreg-factors-2650
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/symbreg-factors-2650
- Property svn:mergeinfo changed
/trunk/sources (added) merged: 14234-14236
- Property svn:mergeinfo changed
-
branches/symbreg-factors-2650/HeuristicLab.Problems.DataAnalysis
- Property svn:mergeinfo changed
/trunk/sources/HeuristicLab.Problems.DataAnalysis (added) merged: 14236
- Property svn:mergeinfo changed
-
branches/symbreg-factors-2650/HeuristicLab.Problems.DataAnalysis/3.4/Interfaces/Classification/IClassificationModel.cs
r14185 r14239 22 22 using System.Collections.Generic; 23 23 namespace HeuristicLab.Problems.DataAnalysis { 24 /// <summary> 25 /// Interface for all classification models. 26 /// <remarks>All methods and properties in in this interface must be implemented thread safely</remarks> 27 /// </summary> 24 28 public interface IClassificationModel : IDataAnalysisModel { 25 29 IEnumerable<double> GetEstimatedClassValues(IDataset dataset, IEnumerable<int> rows); -
branches/symbreg-factors-2650/HeuristicLab.Problems.DataAnalysis/3.4/Interfaces/IDataAnalysisModel.cs
r14185 r14239 24 24 25 25 namespace HeuristicLab.Problems.DataAnalysis { 26 /// <summary> 27 /// Interface for all data-analysis models (regression/classification/clustering). 28 /// <remarks>All methods and properties in in this interface must be implemented thread safely</remarks> 29 /// </summary> 26 30 public interface IDataAnalysisModel : INamedItem { 27 31 IEnumerable<string> VariablesUsedForPrediction { get; } -
branches/symbreg-factors-2650/HeuristicLab.Problems.DataAnalysis/3.4/Interfaces/Regression/IRegressionModel.cs
r14185 r14239 23 23 24 24 namespace HeuristicLab.Problems.DataAnalysis { 25 /// <summary> 26 /// Interface for all regression models. 27 /// <remarks>All methods and properties in in this interface must be implemented thread safely</remarks> 28 /// </summary> 25 29 public interface IRegressionModel : IDataAnalysisModel { 26 30 IEnumerable<double> GetEstimatedValues(IDataset dataset, IEnumerable<int> rows); -
branches/symbreg-factors-2650/HeuristicLab.Problems.DataAnalysis/3.4/Interfaces/TimeSeriesPrognosis/ITimeSeriesPrognosisModel.cs
r14185 r14239 22 22 using System.Collections.Generic; 23 23 namespace HeuristicLab.Problems.DataAnalysis { 24 /// <summary> 25 /// Interface for all time series prognosis models. 26 /// <remarks>All methods and properties in in this interface must be implemented thread safely</remarks> 27 /// </summary> 24 28 public interface ITimeSeriesPrognosisModel : IRegressionModel { 25 29 IEnumerable<IEnumerable<double>> GetPrognosedValues(IDataset dataset, IEnumerable<int> rows, IEnumerable<int> horizons);
Note: See TracChangeset
for help on using the changeset viewer.