Release notes
Gist Release 2.0.4, April 3, 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.3, February 20, 2003
- 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.2, October 11, 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.1, August 14, 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.
Gist Release 2.0, July 24, 2002
-
Rename the entire package.
-
Add
kernel-pca
, project
,
fit-sigmoid
, fselect
and
score-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.2, August 21, 2001
-
Add
-rdb
option to compute-weights
and
classify
, 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 to compute-weights
.
-
Add
-holdout
option to compute-weights
.
-
Scale precision of weights output depending upon convergence
threshold.
-
Add
-initial
option to compute-weights
.
svm Release 1.1, July, 2000.
-
Add
-adddiag
option to compute-weights
.
-
Add
-zeromean
and -varone
options to
compute-weights
.
-
Add a secondary optimization of only the support vectors.
-
Make the convergence threshold depend upon the number of examples.
svm Release 1.0, September 23, 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.95, August 30, 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.
svm Release 0.9, August 16, 1999.