-
Notifications
You must be signed in to change notification settings - Fork 1
/
demo_noise.m
147 lines (113 loc) · 4.3 KB
/
demo_noise.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
%% DEMO: Adaptive TT for streaming 4-order tensors
clear;clc;
run_path;
n_exp = 2;
tt_dim = [10 15 20 1000];
tt_rank = [5 5 5];
outlier_den = 0.2;
outlier_fac = 0;
sampling = 1;
fac_noise = [0, 1e-4, 1e-2, 1];
time_varying = 0e-4;
epsilon = time_varying*ones(1,tt_dim(end));
epsilon(600) = 0; %Aim to create a significant change
forget_factor = 0.9;
PER_ATT = zeros(length(fac_noise),tt_dim(end));
for ll = 1 : length(fac_noise)
fac_noise_ll = fac_noise(ll);
fprintf('Noise level = %f \n',fac_noise_ll);
for ii = 1 : n_exp
fprintf(' run %d/%d \n',ii,n_exp);
%% Generate Data
[Xtrue,tt_core] = tt_generate_tensor(tt_dim,tt_rank,epsilon);
OPTS_PER.Xtrue = Xtrue;
OPTS_PER.forget_factor = forget_factor;
PER1 = zeros(1,tt_dim(end));
N = fac_noise_ll*randn(tt_dim);
% Outliers
O = zeros(tt_dim(1:end));
NN = prod(tt_dim(1:end));
p = randperm(NN);
L = round(outlier_den * NN);
O(p(1:L)) = outlier_fac * rand(L,1);
% Missing
Omega = rand(tt_dim);
Omega = 1.*(Omega <= sampling);
X_full = Xtrue + O + N;
X_miss = Omega .* X_full;
% Algorithm
[per,~,~] = RATT(X_miss,Omega,tt_rank,OPTS_PER);
PER1 = PER1 + per;
end
PER_ATT(ll,:) = PER1 / n_exp;
end
%% Plot
makerSize = 11;
numbMarkers = 500;
LineWidth = 2;
color = get(groot,'DefaultAxesColorOrder');
red_o = [1,0,0];
blue_o = [0, 0, 1];
mag_o = [1 0 1];
gree_o = [0, 0.5, 0];
black_o = [0.25, 0.25, 0.25];
blue_n = color(1,:);
oran_n = color(2,:);
yell_n = color(3,:);
viol_n = color(4,:);
gree_n = color(5,:);
lblu_n = color(6,:);
brow_n = color(7,:);
lbrow_n = [0.5350 0.580 0.2840];
% %% SEP
T = tt_dim(end);
fig = figure;
hold on;
k = 2;
d2 = semilogy(1:k:T,PER_ATT(2,1:k:end),...
'linestyle','-','color',blue_o,'LineWidth',LineWidth);
hold on;
d21 = plot(1:100:T,PER_ATT(2,1:100:end),...
'marker','^','markersize',makerSize,...
'linestyle','none','color',blue_o,'LineWidth',LineWidth);
d22 = semilogy(1:1,PER_ATT(2,1:1),...
'marker','^','markersize',makerSize,...
'linestyle','-','color',blue_o,'LineWidth',LineWidth);
d3 = semilogy(1:k:T,PER_ATT(3,1:k:end),...
'linestyle','-','color','g','LineWidth',LineWidth);
hold on;
d31 = plot(1:100:T,PER_ATT(3,1:100:end),...
'marker','h','markersize',makerSize,...
'linestyle','none','color','g','LineWidth',LineWidth);
d32 = semilogy(1:1,PER_ATT(3,1:1),...
'marker','h','markersize',makerSize,...
'linestyle','-','color','g','LineWidth',LineWidth);
d4 = semilogy(1:k:T,PER_ATT(4,1:k:end),...
'linestyle','-','color','k','LineWidth',LineWidth);
hold on;
d41 = plot(1:100:T,PER_ATT(4,1:100:end),...
'marker','d','markersize',makerSize,...
'linestyle','none','color','k','LineWidth',LineWidth);
d42 = semilogy(1:1,PER_ATT(4,1:1),...
'marker','d','markersize',makerSize,...
'linestyle','-','color','k','LineWidth',LineWidth);
d1 = semilogy(1:k:T,PER_ATT(1,1:k:end),...
'linestyle','-','color',red_o,'LineWidth',LineWidth);
d11 = plot(1:100:T,PER_ATT(1,1:100:end),...
'marker','p','markersize',makerSize,...
'linestyle','none','color',red_o,'LineWidth',LineWidth);
d12 = semilogy(1:1,PER_ATT(1,1:1),...
'marker','p','markersize',makerSize,...
'linestyle','-','color',red_o,'LineWidth',LineWidth);
lgd = legend([d12,d22,d32,d42],'$\sigma_n = 0$','$\sigma_n = 10^{-4}$','$ \sigma_n = 10^{-2}$','$\sigma_n = 1$');
lgd.FontSize = 24;
set(lgd, 'Interpreter', 'latex', 'Color', [0.95, 0.95, 0.95]);
xlabel('Time Index','interpreter','latex','FontSize',13,'FontName','Times New Roman');
ylabel('RE$(\mathcal{X}_{tr},\mathcal{X}_{es})$','interpreter','latex','FontSize',13,'FontName','Times New Roman');
set(fig, 'units', 'inches', 'position', [0.5 0.5 7.5 6.5]);
h=gca;
set(h,'FontSize',16,'XGrid','on','YGrid','on','GridLineStyle',':','MinorGridLineStyle',':','FontName','Times New Roman');
set(h,'FontSize', 30);
% axis([0 T 1*1e-4 1e1]);
grid on;
set(h, 'YScale', 'log','box','on')