Gist Release 2.0.3, February 20, 2003Gist Release 2.0.2, October 11, 2002
- Modification of how system utilities are found; there is a UTIL_PATH define that can now be set in the makefile if 'hostname' and 'date' are not in the user's path.
- Documentation improvements.
Gist Release 2.0.1, August 14, 2002
- Modify fit-sigmoid so that it takes three inputs: a training set of predictions for fitting the sigmoid, the corresponding labels, and a test set of predictions that are to be converted to probabilities. Note that, for the curve fit to be valid, the sigmoid training set should be distinct from the set used to train the SVM.
- Fixed bug in normal approximation to Mann-Whitney U test p-value calculation.
Gist Release 2.0, July 24, 2002
- Modify compute-weights so that the default parameters are reasonable: use a 2-norm soft margin with a diagonal factor of 0.1; turn normalization on; use a constant factor of 10.
svm Release 1.2, August 21, 2001
- Rename the entire package.
- Add
kernel-pca
,project
,fit-sigmoid
,fselect
andscore-svm-results
programs.- Add many feature selection options to
compute-weights
.- Add many options to
rdb-matrix
.- Improve I/O error checking.
- Generalize label file format to allow multiple classes in one file.
svm Release 1.1, July, 2000.
- Add
-rdb
option tocompute-weights
andclassify
, and make the default behavior to not expect or produce RDB format lines.- Fix bug in shuffling routine used in selecting order of evaluation of examples during training and hold-one-out testing. This change will not affect the output of the program, but may affect the speed of convergence.
- Add
-maxiter
option tocompute-weights
.- Add
-holdout
option tocompute-weights
.- Scale precision of weights output depending upon convergence threshold.
- Add
-initial
option tocompute-weights
.svm Release 1.0, September 23, 1999.
- Add
-adddiag
option tocompute-weights
.- Add
-zeromean
and-varone
options tocompute-weights
.- Add a secondary optimization of only the support vectors.
- Make the convergence threshold depend upon the number of examples.
svm Release 0.95, August 30, 1999.
- Fix bug in weight update routine.
- Include median kernel value in diagonal factor heuristic.
- Add the constant factor back in after diagonalizing.
- Fix bug in the way polynomialization was done.
svm Release 0.9, August 16, 1999.
- Change the normalization routines to operate on the kernel, rather than the data. This makes the normalization appropriate for any kernel.
- Generalize the radial kernel to work as a transformation of any kernel function.
- Remove the covariance kernel and the sigmoid kernel.
- Switch the way polynomialization works. It is now A(K + B))C, rather than ((AK) + B)C.