- Timestamp:
- 09/14/09 18:43:04 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.GP.StructureIdentification.Classification/3.3/DefaultClassificationAlgorithmOperators.cs
r2351 r2353 28 28 29 29 namespace HeuristicLab.GP.StructureIdentification.Classification { 30 internalstatic class DefaultClassificationAlgorithmOperators {31 internalstatic IOperator CreatePostProcessingOperator() {30 public static class DefaultClassificationAlgorithmOperators { 31 public static IOperator CreatePostProcessingOperator() { 32 32 SequentialProcessor seq = new SequentialProcessor(); 33 33 seq.AddSubOperator(DefaultStructureIdentificationAlgorithmOperators.CreatePostProcessingOperator()); … … 58 58 } 59 59 60 internalstatic IOperator CreateProblemInjector() {60 public static IOperator CreateProblemInjector() { 61 61 CombinedOperator op = new CombinedOperator(); 62 62 op.Name = "ProblemInjector"; … … 69 69 } 70 70 71 internalstatic void SetModelData(IAnalyzerModel model, IScope scope) {71 public static void SetModelData(IAnalyzerModel model, IScope scope) { 72 72 model.SetResult("TrainingAccuracy", scope.GetVariableValue<DoubleData>("TrainingAccuracy", true).Data); 73 73 model.SetResult("ValidationAccuracy", scope.GetVariableValue<DoubleData>("ValidationAccuracy", true).Data);
Note: See TracChangeset
for help on using the changeset viewer.