view dss/experiments/exp_time_scat_l2.m @ 0:503d0475274e

Version 0.0.1 - Initial Commit
author Francisco Rodriguez Algarra <f.rodriguezalgarra@qmul.ac.uk>
date Wed, 21 Oct 2015 00:02:11 +0100
parents
children
line wrap: on
line source
% Script to reproduce the experiments leading to the results provided in the
% Table 2 of the paper "Deep Scattering Spectrum" by J. Andén and S. Mallat.

% M=2 scattering

preffix = 'time_scat_l2_';

N=5*2^17;

global src;

fparam.filter_type = {'gabor_1d','morlet_1d'};
fparam.Q = [8 2];
fparam.J = T_to_J(8192*2,fparam);

options.M = 2;

Wop = wavelet_factory_1d(N, fparam, options);

feature_fun = {@(x)(format_scat(log_scat(renorm_scat(scat(x,Wop)))))};

db = prepare_database(src,feature_fun);
db.features = single(db.features)
db = svm_calc_kernel(db,'gaussian','square',1:8:size(db.features,2));

optt.kernel_type = 'gaussian';
optt.C = 2.^[0:4:8];
optt.gamma = 2.^[-16:4:-8];
optt.search_depth = 3;
optt.full_test_kernel = 1;

classify(db, optt, preffix);