Changeset 318
- Timestamp:
- May 17, 2005, 3:22:32 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/lib/svm/SVM.h
r307 r318 14 14 namespace svm { 15 15 /// 16 /// Class for SVM using Keerthi's second modification of Platt's SMO. Also 17 /// the elements of the kernel is not computed sequentially, but the 18 /// complete kernel matrix is taken as input and stored in memory. This 19 /// means that the training is faster, but also that it is not possible to 20 /// train a large number of samples N, since the memory cost for the kernel 21 /// matrix is N^2. The SVM object does not contain any data, hence any true 22 /// prediction is not possible. 23 /// 16 /// Class for SVM using Keerthi's second modification of Platt's SMO. 17 /// @todo speed it up. 18 /// 24 19 class SVM 25 20 {
Note: See TracChangeset
for help on using the changeset viewer.