TWiki> Kernel Web>LearningKernels (revision 5)EditAttach

Automatic Kernel Selection

Here we give some examples showing how to automatically create custom kernels using data. The kernels are generally created from a combination of base kernels, which can be specified by the user.

The examples here will use the electronics category from the sentiment analysis dataset of Blitzer et al., which we include with precomputed word level ngram features and binary as well as regression labels (1-5 stars). The data is arranged in LIBSVM format, which is compatible with all the learning algorithms used in these examples. The results shown here should be easily reproducible and serve as a good first exercise.

Note that these exercises have been constructed the mechanics behind using the automatic kernel selection tools. The kernels and parameters and used here are NOT necessarily the best for the one dataset used here.

Feature Weighted Kernels

The examples below consider the case when each base kernel corresponds to a single features. Such a set of base kernels occurs naturally when, for example, learning rational kernels as explained in Cortes et al. (MLSP 2008).

Correlation Kernel Example: The correlation based kernel weights each input feature by a quantity proportional to its correlation with the training labels. The following command will generate weighted features:

$ klweightfeatures  --weight_type=corr --features --sparse --num_train=1000 elec.2-gram 1 \
  > elec.2-gram.corr
INFO: Loaded 2000 datapoints.
INFO: Selecting 1000 training examples...
INFO: Using 57466 features.

The --features flag forces the output of explicit feature vectors, rather than the kernel matrix, and the --sparse flag forces the use of sparse data-structure, which are both desirable in this case since the ngram-features are sparse. The --num_train flag indicates that the kernel selection algorithm should use only the first 1000 data-points for training, and thus allows us to use the remaining points as a holdout set for evaluating performance. The --alg_reg flag lets the kernel selection algorithm know the regularization value of the Finally, the --weight_type flag selects which type of kernel selection algorithm is used. The first argument indicates the input dataset and the second argument regularizes the kernel which, in the case of the correlation kernel, restricts the kernel trace to equal 1.

The weighted features can then be used to train and test an svm model via libsvm or liblinear:

Separate train and test:

$ head -n1000 elec.2-gram.corr > elec.2-gram.corr.train
$ tail -n+1001 elec.2-gram.corr > elec.2-gram.corr.test

Train:

$ svm-train -s 0 -t 0 -c 4096 elec.2-gram.corr.train model

Test:

$ svm-predict elec.2-gram.corr.test model pred
Accuracy = 80% (800/1000) (classification)

L2 Regularized Linear Combination: Here we optimally weight the input features in order to maximize the kernel ridge regression (KRR) objective, subject to the L2 regularization constraint: ||mu - mu0|| < ker_reg||, where mu is the vector of squared weights and mu0 and ker_reg are user specified arguments.

$ klweightfeatures --weight_type=lin2 --features --sparse --num_train=1000 \
    --alg_reg=4 --offset=1 --tol=1e-4 elec.1-gram.reg 1 > elec.1-gram.lin2
INFO: Loaded 2000 datapoints.
INFO: Selecting 1000 training examples...
...
INFO: iter: 18 obj: 333.919 gap: 0.000123185
INFO: iter: 19 obj: 333.922 gap: 6.15492e-05
INFO: Using 12876 features.

The algorithm will iterate until the tolerance, which is set by the --tol flag, or maximum number of iterations is met. In this case mu0 is equal to zero (the default) and ker_reg is specified by the second argument to the function. Since this selection is algorithm specific, we should also specify the regularization parameter we will use in the second step via the --alg_reg flag. The --offset flag adds the constant indicated offset to the dataset input if one is not already included. Finally, the =--tol flag indicates at what precision the iterative method should stop.

(NOTE: the time taken for each iteration will be improved soon. There still remains some optimization to be made to the sparse-matrix data-structure).

We then train and test using kernel ridge regression (KRR), with input and output arguments that have been made to closely resemble libsvm. One main difference is that the user must specify to use sparse data-structures. If the data is dense, it is better to use highly efficient dense blas routines instead by omitting the --sparse flag. To see a full list of command line arguments, run krr-train without any parameters.

Separate train and test:

$ head -n1000 elec.1-gram.lin2 > elec.1-gram.lin2.train
$ tail -n+1001 elec.1-gram.lin2 > elec.1-gram.lin2.test

Train:

$ krr-train --sparse elec.1-gram.lin2.train 4 model

Test:

$ krr-predict --sparse elec.1-gram.lin2.test model pred
INFO: Using primal solution to make predictions...
INFO: RMSE: 1.34898

--- Under Construction ---

Kernel Combinations w/ Explicit Features

Here we consider the case of combining several general base kernels that admit explicit feature mappings. In the case that these features are sparse, for example, we are able to very efficiently compute combinations in high dimensional features spaces.

In this example we find the best linear combination of 5 character-level ngram kernels (1-gram, 2-gram, ..., 5-gram) with respect to the SVM objective.

klcombinefeatures ...

This will produce a kernels with many features, but which are sparse, thus liblinear is a good choice for training a model:

Separate train and test:

head -n1000 electronics.class.corr > electronics.class.corr.train
tail -n+1001 electronics.class.corr > electronics.class.corr.test

Train:

train ...

Test:

predict ...

General Kernel Combinations

The final example listed here is regarding general combinations of kernels

-- AfshinRostamizadeh - 24 Aug 2009

Edit | Attach | Watch | Print version | History: r13 | r7 < r6 < r5 < r4 | Backlinks | Raw View | Raw edit | More topic actions...
Topic revision: r5 - 2009-08-26 - AfshinRostamizadeh
 
This site is powered by the TWiki collaboration platform Powered by PerlCopyright © 2008-2024 by the contributing authors. All material on this collaboration platform is the property of the contributing authors.
Ideas, requests, problems regarding TWiki? Send feedback