Mercurial > hg > scatter_reeval
view dss/experiments/exp_time_freq_scat_l2_adap_q1.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, frequency scattering, multiple Q1 preffix = 'time_freq_scat_l2_adap_q1_'; N = 5*2^17; global src; filt1_opt.filter_type = {'gabor_1d','morlet_1d'}; filt1_opt.Q = [8 1]; filt1_opt.J = T_to_J(8192*2,filt1_opt); sc1_opt.M = 2; ffilt1_opt.filter_type = 'morlet_1d'; ffilt1_opt.J = 7; fsc1_opt.M = 1; Wop1 = wavelet_factory_1d(N, filt1_opt, sc1_opt); fWop1 = wavelet_factory_1d(128, ffilt1_opt, fsc1_opt); scatt_fun1 = @(x)(log_scat(renorm_scat(scat(x,Wop1)))); fscatt_fun1 = @(x)(func_output(@scat_freq,2,scatt_fun1(x),fWop1)); feature_fun1 = @(x)(format_scat(fscatt_fun1(x))); filt2_opt = filt1_opt; filt2_opt.Q = [1 1]; filt2_opt.J = T_to_J(8192*2,filt2_opt); sc2_opt = sc1_opt; ffilt2_opt = ffilt1_opt; ffilt2_opt.J = 5; fsc2_opt = fsc1_opt; Wop2 = wavelet_factory_1d(N, filt2_opt, sc2_opt); fWop2 = wavelet_factory_1d(32, ffilt2_opt, fsc2_opt); scatt_fun2 = @(x)(log_scat(renorm_scat(scat(x,Wop2)))); fscatt_fun2 = @(x)(func_output(@scat_freq,2,scatt_fun2(x),fWop2)); feature_fun2 = @(x)(format_scat(fscatt_fun2(x))); features = {feature_fun1, feature_fun2}; for k = 1:length(features) fprintf('testing feature #%d...',k); tic; sz = size(features{k}(randn(N,1))); aa = toc; fprintf('OK (%.2fs) (size [%d,%d])\n',aa,sz(1),sz(2)); end db = prepare_database(src,features); 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);