-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutterancePartition.m
45 lines (38 loc) · 1.56 KB
/
utterancePartition.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
function [newMFCCs, newDatabase] = utterancePartition(database)
%% Generowanie 10 nowych macierzy MFCC dla nagran dluzszych niz 30 sekund.
% Kazda nowa macierz stanowi x% ramek MFCC bazowej macierzy MFCC.
% Za kazdym razem x% ramek jest losowanych z bazowej macierzy MFCC.
% Dla kazdego nagrania > 30 s otrzymujemy N+1 macierzy MFCC.
%%
disp('Generating more data...')
MFCCs = database.MFCC_delta_cms;
proc = 0.5;
N = 10;
minSec = 30;
refSecMin = ones(size(database,1),1)*minSec;
refSecMax = proc*database.duration_sec;
k = refSecMin < refSecMax; % nagrania dluzsze niz 30 sekund
licz = 1;
for i = 1:size(database,1)
if k(i)
nFrames = size(MFCCs{i,1},2);
for j = 1:N+1
if j == 1
newMFCCs{licz,1} = MFCCs{i,1}(:,:);
newDatabase(licz,:) = database(i,{'file_id', 'duration_sec', 'gender', 'age', 'age_class'});
licz = licz + 1;
else
w = randperm(nFrames, round(nFrames*proc));
newMFCCs{licz,1} = MFCCs{i,1}(:,w);
newDatabase(licz,:) = database(i,{'file_id', 'duration_sec', 'gender', 'age', 'age_class'});
newDatabase.duration_sec(licz) = database.duration_sec(i)*proc;
licz = licz + 1;
end
end
else
newMFCCs{licz,1} = MFCCs{i,1}(:,:);
newDatabase(licz,:) = database(i,{'file_id', 'duration_sec', 'gender', 'age', 'age_class'});
licz = licz + 1;
end
end
disp('More data generated.')