- Timestamp:
- Sep 8, 2006, 11:42:16 AM (17 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/c++_tools/classifier/CrossValidationSampler.h
r613 r645 49 49 /// @brief Constructor 50 50 /// 51 /// @ parameter Target targets52 /// @ parameter N total number of partitions53 /// @ parameter k for k-fold crossvalidation51 /// @a target targets. 52 /// @a N total number of partitions. 53 /// @a k for k-fold crossvalidation. 54 54 /// 55 55 CrossValidationSampler(const Target& target, const size_t N,const size_t k); -
trunk/test/svm_test.cc
r616 r645 134 134 } 135 135 double slack_bound=2e-7; 136 if (slack > slack_bound ){136 if (slack > slack_bound || std::isnan(slack)){ 137 137 *error << "Slack too large. Is the bias correct?\n"; 138 138 *error << "slack: " << slack << std::endl;
Note: See TracChangeset
for help on using the changeset viewer.