-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrun_experiments_eusipco.m
49 lines (40 loc) · 1.04 KB
/
run_experiments_eusipco.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
%% Run Experiments for EUSIPCO-2019
% Runs the experiments described in [1]. All experiments were run using
% MATLAB version "9.1.0.441655 (R2016b)"
%
% [1] Hinrich, J. L. and Mørup, M., Probabilistic Tensor Train Decomposition.
% https://github.com/JesperLH/prob-tt
%
addpath(genpath('./requiredfunctions'))
addpath('./eusipco/')
%addpath(genpath('../ncptensor'))
%addpath(genpath('../tools'))
elapsed_time = zeros(4,1)*nan;
for j = 1:4
t0_ = tic;
switch j
case 1
experiments_eusipco_knownD
case 2
experiments_eusipco_unknownD
case 3
experiments_tensortrain_vs_prob_tensor
case 4
perm_idx = perms(1:3);
for p = 1:size(perm_idx,1)
experiments_aminoacid_modelorder(perm_idx(p,:))
end
end
elapsed_time(j) = toc(t0_);
end
%%
return
%% Visualization (requires display).
% Figure 1
visualize_exp_synthetictensor
% Figure 2
visualize_exp_probTTvsOseTT
% Table 1
visualize_exp_aminoorder
% Figure 3
experiments_aminoacid