Changeset 173 for trunk/sources/HeuristicLab.DataAnalysis
- Timestamp:
- 04/23/08 13:24:12 (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.DataAnalysis/DatasetParser.cs
r172 r173 89 89 public int TrainingSamplesStart { 90 90 get { 91 if(!metadata.ContainsKey("TRAININGSAMPLES TART")) return 0;91 if(!metadata.ContainsKey("TRAININGSAMPLESSTART")) return 0; 92 92 else return metadata["TRAININGSAMPLESSTART"][0].intValue; 93 93 } … … 96 96 public int TrainingSamplesEnd { 97 97 get { 98 if(!metadata.ContainsKey("TRAININGSAMPLE END")) return rows;98 if(!metadata.ContainsKey("TRAININGSAMPLESEND")) return rows; 99 99 else return metadata["TRAININGSAMPLESEND"][0].intValue; 100 100 }
Note: See TracChangeset
for help on using the changeset viewer.