- Timestamp:
- 08/22/11 09:35:06 (13 years ago)
- Location:
- branches/GP.Grammar.Editor/HeuristicLab.Problems.DataAnalysis/3.4/Interfaces
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/GP.Grammar.Editor/HeuristicLab.Problems.DataAnalysis/3.4/Interfaces/Classification/IClassificationSolution.cs
r5809 r6675 20 20 #endregion 21 21 22 using System;23 22 using System.Collections.Generic; 24 23 namespace HeuristicLab.Problems.DataAnalysis { 25 24 public interface IClassificationSolution : IDataAnalysisSolution { 26 25 new IClassificationModel Model { get; } 27 new IClassificationProblemData ProblemData { get; }26 new IClassificationProblemData ProblemData { get; set; } 28 27 29 28 IEnumerable<double> EstimatedClassValues { get; } -
branches/GP.Grammar.Editor/HeuristicLab.Problems.DataAnalysis/3.4/Interfaces/Clustering/IClusteringSolution.cs
r5809 r6675 24 24 public interface IClusteringSolution : IDataAnalysisSolution { 25 25 new IClusteringModel Model { get; } 26 new IClusteringProblemData ProblemData { get; }26 new IClusteringProblemData ProblemData { get; set; } 27 27 28 28 IEnumerable<int> ClusterValues { get; } -
branches/GP.Grammar.Editor/HeuristicLab.Problems.DataAnalysis/3.4/Interfaces/IDataAnalysisProblemData.cs
r5883 r6675 27 27 namespace HeuristicLab.Problems.DataAnalysis { 28 28 public interface IDataAnalysisProblemData : INamedItem { 29 bool IsEmpty { get; } 30 29 31 Dataset Dataset { get; } 30 32 ICheckedItemList<StringValue> InputVariables { get; } … … 37 39 IEnumerable<int> TestIndizes { get; } 38 40 41 bool IsTrainingSample(int index); 42 bool IsTestSample(int index); 43 39 44 event EventHandler Changed; 40 45 } -
branches/GP.Grammar.Editor/HeuristicLab.Problems.DataAnalysis/3.4/Interfaces/IDataAnalysisSolution.cs
r5909 r6675 21 21 22 22 using System; 23 using HeuristicLab.Common; 23 24 using HeuristicLab.Core; 24 using HeuristicLab.Common;25 25 26 26 namespace HeuristicLab.Problems.DataAnalysis { 27 27 public interface IDataAnalysisSolution : INamedItem, IStorableContent { 28 28 IDataAnalysisModel Model { get; } 29 IDataAnalysisProblemData ProblemData { get; }29 IDataAnalysisProblemData ProblemData { get; set; } 30 30 31 31 event EventHandler ModelChanged; -
branches/GP.Grammar.Editor/HeuristicLab.Problems.DataAnalysis/3.4/Interfaces/Regression/IRegressionEnsembleSolution.cs
r6618 r6675 25 25 public interface IRegressionEnsembleSolution : IRegressionSolution { 26 26 new IRegressionEnsembleModel Model { get; } 27 new RegressionEnsembleProblemData ProblemData { get; set; } 27 28 IItemCollection<IRegressionSolution> RegressionSolutions { get; } 28 29 IEnumerable<IEnumerable<double>> GetEstimatedValueVectors(Dataset dataset, IEnumerable<int> rows); -
branches/GP.Grammar.Editor/HeuristicLab.Problems.DataAnalysis/3.4/Interfaces/Regression/IRegressionSolution.cs
r6647 r6675 24 24 public interface IRegressionSolution : IDataAnalysisSolution { 25 25 new IRegressionModel Model { get; } 26 new IRegressionProblemData ProblemData { get; }26 new IRegressionProblemData ProblemData { get; set; } 27 27 28 28 IEnumerable<double> EstimatedValues { get; }
Note: See TracChangeset
for help on using the changeset viewer.