Changeset 7215 for branches/HeuristicLab.Hive.Azure/HeuristicLab.Problems.DataAnalysis/3.4/Implementation
- Timestamp:
- 12/20/11 13:54:57 (13 years ago)
- Location:
- branches/HeuristicLab.Hive.Azure
- Files:
-
- 1 deleted
- 9 edited
- 2 copied
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.Hive.Azure
- Property svn:ignore
-
old new 4 4 *.suo 5 5 *.vsp 6 Doxygen 6 7 Google.ProtocolBuffers-0.9.1.dll 7 8 HeuristicLab 3.3.5.1.ReSharper.user 8 9 HeuristicLab 3.3.6.0.ReSharper.user 9 10 HeuristicLab.4.5.resharper.user 11 HeuristicLab.ExtLibs.6.0.ReSharper.user 10 12 HeuristicLab.resharper.user 11 13 ProtoGen.exe … … 16 18 bin 17 19 protoc.exe 18 HeuristicLab.ExtLibs.6.0.ReSharper.user19 Doxygen
-
- Property svn:mergeinfo changed
- Property svn:ignore
-
branches/HeuristicLab.Hive.Azure/HeuristicLab.Problems.DataAnalysis
- Property svn:mergeinfo changed
/trunk/sources/HeuristicLab.Problems.DataAnalysis (added) merged: 7011,7017,7021,7023,7043,7049,7097,7134,7167,7169
- Property svn:mergeinfo changed
-
branches/HeuristicLab.Hive.Azure/HeuristicLab.Problems.DataAnalysis/3.4/Implementation/Classification/ClassificationEnsembleProblemData.cs
r6672 r7215 43 43 44 44 private static readonly ClassificationEnsembleProblemData emptyProblemData; 45 public static ClassificationEnsembleProblemData EmptyProblemData {45 public static new ClassificationEnsembleProblemData EmptyProblemData { 46 46 get { return emptyProblemData; } 47 47 } -
branches/HeuristicLab.Hive.Azure/HeuristicLab.Problems.DataAnalysis/3.4/Implementation/Classification/ClassificationProblem.cs
r5809 r7215 28 28 [Item("Classification Problem", "A general classification problem.")] 29 29 [Creatable("Problems")] 30 public class ClassificationProblem : DataAnalysisProblem<IClassificationProblemData>, IClassificationProblem { 30 public class ClassificationProblem : DataAnalysisProblem<IClassificationProblemData>, IClassificationProblem, IStorableContent { 31 public string Filename { get; set; } 32 31 33 [StorableConstructor] 32 34 protected ClassificationProblem(bool deserializing) : base(deserializing) { } -
branches/HeuristicLab.Hive.Azure/HeuristicLab.Problems.DataAnalysis/3.4/Implementation/Classification/ClassificationProblemData.cs
r6740 r7215 33 33 [StorableClass] 34 34 [Item("ClassificationProblemData", "Represents an item containing all data defining a classification problem.")] 35 public class ClassificationProblemData : DataAnalysisProblemData, IClassificationProblemData {35 public class ClassificationProblemData : DataAnalysisProblemData, IClassificationProblemData, IStorableContent { 36 36 protected const string TargetVariableParameterName = "TargetVariable"; 37 37 protected const string ClassNamesParameterName = "ClassNames"; … … 39 39 protected const int MaximumNumberOfClasses = 20; 40 40 protected const int InspectedRowsToDetermineTargets = 500; 41 42 public string Filename { get; set; } 41 43 42 44 #region default data -
branches/HeuristicLab.Hive.Azure/HeuristicLab.Problems.DataAnalysis/3.4/Implementation/Classification/ClassificationSolutionBase.cs
r6961 r7215 77 77 } 78 78 79 [StorableHook(HookType.AfterDeserialization)] 80 private void AfterDeserialization() { 81 if (!this.ContainsKey(TrainingNormalizedGiniCoefficientResultName)) 82 Add(new Result(TrainingNormalizedGiniCoefficientResultName, "Normalized Gini coefficient of the model on the training partition.", new DoubleValue())); 83 if (!this.ContainsKey(TestNormalizedGiniCoefficientResultName)) 84 Add(new Result(TestNormalizedGiniCoefficientResultName, "Normalized Gini coefficient of the model on the test partition.", new DoubleValue())); 85 } 86 79 87 protected void CalculateResults() { 80 88 double[] estimatedTrainingClassValues = EstimatedTrainingClassValues.ToArray(); // cache values -
branches/HeuristicLab.Hive.Azure/HeuristicLab.Problems.DataAnalysis/3.4/Implementation/Clustering/ClusteringProblemData.cs
r6740 r7215 29 29 [StorableClass] 30 30 [Item("ClusteringProblemData", "Represents an item containing all data defining a clustering problem.")] 31 public sealed class ClusteringProblemData : DataAnalysisProblemData, IClusteringProblemData { 31 public sealed class ClusteringProblemData : DataAnalysisProblemData, IClusteringProblemData, IStorableContent { 32 public string Filename { get; set; } 32 33 33 34 #region default data -
branches/HeuristicLab.Hive.Azure/HeuristicLab.Problems.DataAnalysis/3.4/Implementation/Regression/RegressionProblem.cs
r5809 r7215 28 28 [Item("Regression Problem", "A general regression problem.")] 29 29 [Creatable("Problems")] 30 public class RegressionProblem : DataAnalysisProblem<IRegressionProblemData>, IRegressionProblem { 30 public class RegressionProblem : DataAnalysisProblem<IRegressionProblemData>, IRegressionProblem, IStorableContent { 31 public string Filename { get; set; } 32 31 33 [StorableConstructor] 32 34 protected RegressionProblem(bool deserializing) : base(deserializing) { } -
branches/HeuristicLab.Hive.Azure/HeuristicLab.Problems.DataAnalysis/3.4/Implementation/Regression/RegressionProblemData.cs
r6740 r7215 33 33 [StorableClass] 34 34 [Item("RegressionProblemData", "Represents an item containing all data defining a regression problem.")] 35 public class RegressionProblemData : DataAnalysisProblemData, IRegressionProblemData {35 public class RegressionProblemData : DataAnalysisProblemData, IRegressionProblemData, IStorableContent { 36 36 protected const string TargetVariableParameterName = "TargetVariable"; 37 public string Filename { get; set; } 37 38 38 39 #region default data
Note: See TracChangeset
for help on using the changeset viewer.