- Timestamp:
- 08/10/08 15:49:01 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.StructureIdentification/Evaluation/AccuracyEvaluator.cs
r482 r484 73 73 double est = GetEstimatedValue(sample); 74 74 double origClass = GetOriginalValue(sample); 75 SetOriginalValue(sample, est);76 75 double estClass = double.NaN; 77 76 // if estimation is lower than the smallest threshold value -> estimated class is the lower class … … 88 87 } 89 88 } 89 SetOriginalValue(sample, estClass); 90 90 if(Math.Abs(estClass - origClass) < EPSILON) nCorrect++; 91 91 }
Note: See TracChangeset
for help on using the changeset viewer.