Gist Release 2.0.8, January 6, 2004Gist Release 2.0.7, December 16, 2003
- classify: Bugs fixed in matrix dimension tests for "self-train" and "self-test" matrices.
- compute-weights: When
-kernelout
is selected, the diagonal factor for the 2-norm soft margin is no longer added. This change makes it possible to use compute-weights to generate kernel matrices that can be modified externally, and then re-entered for training using the-matrix
option.
- Changed the default value of 'maxiter' (maximum number of iterations during training) to 'no limit', from the previous default of 10000. This prevents early termination of jobs that take many iterations. Users who want iteration or time limits should set the
-maxiter
or-maxtime
options forcompute-weights
.- Fixed minor bug in the array shuffling routine that caused arrays to be non-uniformly shuffled.
- Default precision and width in rdb-matrix increased from 5/3 to 8/5. This reduces problems caused by loss of precision during manipulation of files.
- Add a Perl script,
gist-rfe
to do SVM recursive feature elimination.Gist Release 2.0.6 was not released.
Gist Release 2.0.5, April 30, 2003Gist Release 2.0.4, April 3, 2003
- compute-weights: Fixed bug in 2-norm soft margin implementation that caused incorrect use of the diagonal factors in some cases. In particular, training errors could be mis-reported in some cases, and hold-one-out cross-validation could yield incorrect results in some situations. This only affects applications where the 2-norm soft margin was used (that is, with a 'diagonal factor').
- score-svm-results: Uninitialized variable bug fixed.
Gist Release 2.0.3, February 20, 2003
- classify: Fixed bug that caused failure when using a non-square test kernel matrices.
- classify: Using a training kernel matrix for 'classify' when not needed causes a warning to be issued.
- Got rid of dependency on system utilities 'hostname' and 'date'; UTIL_PATH is no longer needed.
Gist 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.