Changeset 1134 for trunk/yat/classifier/Sampler.h
- Timestamp:
- Feb 23, 2008, 11:52:43 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/yat/classifier/Sampler.h
r1000 r1134 27 27 28 28 #include "Target.h" 29 #include "yat/utility/Index.h" 29 30 30 31 #include <vector> … … 69 70 /// @return training indices 70 71 /// 71 const std::vector<size_t>&72 const utility::Index& 72 73 training_index(std::vector<size_t>::size_type i) const; 73 74 … … 85 86 /// @note if state is invalid the result is undefined 86 87 /// 87 const std::vector<size_t>&88 const utility::Index& 88 89 validation_index(std::vector<size_t>::size_type i) const; 89 90 … … 99 100 Target target_; 100 101 /// index of training sets for the partitions 101 std::vector< std::vector<size_t>> training_index_;102 std::vector<utility::Index> training_index_; 102 103 /// Targets for training sets for the partitions 103 104 std::vector<Target> training_target_; 104 105 /// index of validation sets for the partitions 105 std::vector< std::vector<size_t>> validation_index_;106 std::vector<utility::Index> validation_index_; 106 107 /// Targets for validation sets for the partitions 107 108 std::vector<Target> validation_target_;
Note: See TracChangeset
for help on using the changeset viewer.