Part-2 Tutorial on Singing Transcription (by Roger Jang)

Contents

This is the part-3 tutorial on singing transcription from polyphonic music, for AI Cup Competition. This part will focus on evaluation on singing transcription. You should have read part-1 tutorial and part-2 tutorial before reading this part.

Preprocessing

Before we start, let's add necessary toolboxes to the search path of MATLAB:

addpath d:/users/jang/matlab/toolbox/utility
addpath d:/users/jang/matlab/toolbox/sap
addpath d:/users/jang/matlab/toolbox/machineLearning

All the above toolboxes can be downloaded from Roger's toolbox page. Make sure you are using the latest toolboxes to work with this script.

For compatibility, here we list the platform and MATLAB version that we used to run this script:

fprintf('Platform: %s\n', computer);
fprintf('MATLAB version: %s\n', version);
fprintf('Date & time: %s\n', char(datetime));
scriptStartTime=tic;	% Timing for the whole script
Platform: PCWIN64
MATLAB version: 9.6.0.1214997 (R2019a) Update 6
Date & time: 19-Jun-2020 23:22:29

ST evaluation of a song

Here we want to focus on the evaluation of singing transcription on a single song. We have put every component for doing so in a file "goTestOne.m", as follows:

type goTestOne.m
feaFile='d:\dataSet\public\MIR-ST500\6\6_feature.json';
fprintf('Reading %s...', feaFile);
myTic=tic; fea=jsondecode(fileread(feaFile)); fprintf('==> Time=%g sec\n', toc(myTic));
pv.pitch=fea.vocal_pitch;
pv.time=fea.time;
pv.name='隱形的翅膀';
%opt=pvPlot('defaultOpt'); opt.showPlayButton=0;
%figure; pvPlot(pv, opt);
%%
gtFile='d:\dataSet\public\MIR-ST500\6\6_groundtruth.txt';
fprintf('Reading %s...', gtFile);
myTic=tic; noteGt=noteFileRead(gtFile); fprintf('==> Time=%g sec\n', toc(myTic));
%%
fprintf('Performing pv2note...');
opt=pv2note('defaultOpt');
opt.method='simple00';
%opt.gtNote=noteGt;
myTic=tic; notePredicted=pv2note(pv, opt); fprintf('==> Time=%g sec\n', toc(myTic));
fprintf('No. of GT notes=%d\n', length(noteGt.pitch));
fprintf('No. of predicted notes=%d\n', length(notePredicted.pitch));
%%
fprintf('Performing noteVecSim...');
myTic=tic; fMeasure=noteVecSim(notePredicted, noteGt);  fprintf('==> Time=%g sec\n', toc(myTic));
fprintf('fMeasure=%g\n', fMeasure);

We can run the above script to see how it goes:

goTestOne
Reading d:\dataSet\public\MIR-ST500\6\6_feature.json...==> Time=0.123689 sec
Reading d:\dataSet\public\MIR-ST500\6\6_groundtruth.txt...==> Time=0.0011969 sec
Performing pv2note...==> Time=0.0058614 sec
No. of GT notes=245
No. of predicted notes=136
Performing noteVecSim...==> Time=0.0038839 sec
fMeasure=0.259318

ST evaluation of MIR-ST500 dataset

Then we can perform the evaluation over all songs in MIR-ST500 dataset, as follows:

% Get all groundtruth files
melody=dir('d:/dataSet/public/MIR-ST500/*/*_groundtruth.txt');
melodyCount=length(melody);
fprintf('melodyCount=%d\n', melodyCount);
% Get song ID
for i=1:melodyCount
	items=split(melody(i).name, '_');
	melody(i).songId=eval(items{1});
end
% Ordered by songID
songId=[melody.songId];
[sorted, index]=sort(songId);
melody=melody(index);
% Read each feature file and perform singing transcription
myTic=tic;
for i=1:melodyCount
	gtFilePath=fullfile(melody(i).folder, melody(i).name);
	% Read the groundtruth
	melody(i).noteGt=noteFileRead(gtFilePath);
	% Read the feature file
	feaFilePath=fullfile(melody(i).folder, sprintf('%d_feature.json', melody(i).songId));
	fea=jsondecode(fileread(feaFilePath));
	pv.pitch=fea.vocal_pitch;
	pv.time=fea.time;
	melody(i).notePredicted=pv2note(pv, opt);
	melody(i).fMeasure=noteVecSim(melody(i).notePredicted, melody(i).noteGt);
	fprintf('%d/%d: file=%s, f-measure=%g\n', i, melodyCount, gtFilePath, melody(i).fMeasure);
end
fprintf('Time for pv2note() and noteVecSim(): %g sec\n', toc(myTic));
fprintf('Overall f-measure=%g\n', mean([melody.fMeasure]));
melodyCount=500
1/500: file=d:\dataSet\public\MIR-ST500\1\1_groundtruth.txt, f-measure=0.35763
2/500: file=d:\dataSet\public\MIR-ST500\2\2_groundtruth.txt, f-measure=0.326394
3/500: file=d:\dataSet\public\MIR-ST500\3\3_groundtruth.txt, f-measure=0.217391
4/500: file=d:\dataSet\public\MIR-ST500\4\4_groundtruth.txt, f-measure=0.290541
5/500: file=d:\dataSet\public\MIR-ST500\5\5_groundtruth.txt, f-measure=0.315479
6/500: file=d:\dataSet\public\MIR-ST500\6\6_groundtruth.txt, f-measure=0.259318
7/500: file=d:\dataSet\public\MIR-ST500\7\7_groundtruth.txt, f-measure=0.265432
8/500: file=d:\dataSet\public\MIR-ST500\8\8_groundtruth.txt, f-measure=0.25034
9/500: file=d:\dataSet\public\MIR-ST500\9\9_groundtruth.txt, f-measure=0.220551
10/500: file=d:\dataSet\public\MIR-ST500\10\10_groundtruth.txt, f-measure=0.277904
11/500: file=d:\dataSet\public\MIR-ST500\11\11_groundtruth.txt, f-measure=0.331302
12/500: file=d:\dataSet\public\MIR-ST500\12\12_groundtruth.txt, f-measure=0.246792
	Warning: many-to-1 mapping, p=[2;4;5;6;10;10;11;12;13;16;18;19;21;22;23;26;29;30;35;36;37;38;39;40;42;44;46;47;49;50;51;53;54;55;57;58;59;60;61;62;63;65;66;70;73;74;75;76;78;79;80;81;83;90;91;92;93;94;97;99;104;107;109;110;116;117;119;120;122;123;124;125;127;128;129;131;133;134;135;138;139;141;142;143;145;147;149;150;154;157;158;160;161;162;163]
13/500: file=d:\dataSet\public\MIR-ST500\13\13_groundtruth.txt, f-measure=0.20284
14/500: file=d:\dataSet\public\MIR-ST500\14\14_groundtruth.txt, f-measure=0.195407
15/500: file=d:\dataSet\public\MIR-ST500\15\15_groundtruth.txt, f-measure=0.270213
16/500: file=d:\dataSet\public\MIR-ST500\16\16_groundtruth.txt, f-measure=0.238579
17/500: file=d:\dataSet\public\MIR-ST500\17\17_groundtruth.txt, f-measure=0.394725
18/500: file=d:\dataSet\public\MIR-ST500\18\18_groundtruth.txt, f-measure=0.301082
19/500: file=d:\dataSet\public\MIR-ST500\19\19_groundtruth.txt, f-measure=0.207481
20/500: file=d:\dataSet\public\MIR-ST500\20\20_groundtruth.txt, f-measure=0.163175
21/500: file=d:\dataSet\public\MIR-ST500\21\21_groundtruth.txt, f-measure=0.285845
22/500: file=d:\dataSet\public\MIR-ST500\22\22_groundtruth.txt, f-measure=0.272848
23/500: file=d:\dataSet\public\MIR-ST500\23\23_groundtruth.txt, f-measure=0.29781
24/500: file=d:\dataSet\public\MIR-ST500\24\24_groundtruth.txt, f-measure=0.255372
25/500: file=d:\dataSet\public\MIR-ST500\25\25_groundtruth.txt, f-measure=0.109202
	Warning: many-to-1 mapping, p=[1;2;3;4;6;8;9;10;12;13;14;20;21;24;27;28;29;30;32;33;34;37;38;39;43;46;47;48;49;50;51;54;57;58;62;63;64;69;70;71;72;73;76;77;80;81;82;83;83;86;88;91;92;93;94;95;96;97;100;101;102;103;105;106;108;111;113;114;115;117;118;119;120;121;123;125;126;127;128;132;133;134;135;136]
26/500: file=d:\dataSet\public\MIR-ST500\26\26_groundtruth.txt, f-measure=0.143219
27/500: file=d:\dataSet\public\MIR-ST500\27\27_groundtruth.txt, f-measure=0.270896
28/500: file=d:\dataSet\public\MIR-ST500\28\28_groundtruth.txt, f-measure=0.166603
29/500: file=d:\dataSet\public\MIR-ST500\29\29_groundtruth.txt, f-measure=0.239506
30/500: file=d:\dataSet\public\MIR-ST500\30\30_groundtruth.txt, f-measure=0.254286
31/500: file=d:\dataSet\public\MIR-ST500\31\31_groundtruth.txt, f-measure=0.285499
32/500: file=d:\dataSet\public\MIR-ST500\32\32_groundtruth.txt, f-measure=0.198778
33/500: file=d:\dataSet\public\MIR-ST500\33\33_groundtruth.txt, f-measure=0.324948
34/500: file=d:\dataSet\public\MIR-ST500\34\34_groundtruth.txt, f-measure=0.276806
35/500: file=d:\dataSet\public\MIR-ST500\35\35_groundtruth.txt, f-measure=0.262745
36/500: file=d:\dataSet\public\MIR-ST500\36\36_groundtruth.txt, f-measure=0.341741
37/500: file=d:\dataSet\public\MIR-ST500\37\37_groundtruth.txt, f-measure=0.201583
38/500: file=d:\dataSet\public\MIR-ST500\38\38_groundtruth.txt, f-measure=0.162452
39/500: file=d:\dataSet\public\MIR-ST500\39\39_groundtruth.txt, f-measure=0.270891
40/500: file=d:\dataSet\public\MIR-ST500\40\40_groundtruth.txt, f-measure=0.219832
41/500: file=d:\dataSet\public\MIR-ST500\41\41_groundtruth.txt, f-measure=0.236754
42/500: file=d:\dataSet\public\MIR-ST500\42\42_groundtruth.txt, f-measure=0.3632
43/500: file=d:\dataSet\public\MIR-ST500\43\43_groundtruth.txt, f-measure=0.28129
44/500: file=d:\dataSet\public\MIR-ST500\44\44_groundtruth.txt, f-measure=0.150112
45/500: file=d:\dataSet\public\MIR-ST500\45\45_groundtruth.txt, f-measure=0.25252
46/500: file=d:\dataSet\public\MIR-ST500\46\46_groundtruth.txt, f-measure=0.317848
47/500: file=d:\dataSet\public\MIR-ST500\47\47_groundtruth.txt, f-measure=0.207595
48/500: file=d:\dataSet\public\MIR-ST500\48\48_groundtruth.txt, f-measure=0.260048
49/500: file=d:\dataSet\public\MIR-ST500\49\49_groundtruth.txt, f-measure=0.109884
50/500: file=d:\dataSet\public\MIR-ST500\50\50_groundtruth.txt, f-measure=0.304803
51/500: file=d:\dataSet\public\MIR-ST500\51\51_groundtruth.txt, f-measure=0.226055
52/500: file=d:\dataSet\public\MIR-ST500\52\52_groundtruth.txt, f-measure=0.137859
53/500: file=d:\dataSet\public\MIR-ST500\53\53_groundtruth.txt, f-measure=0.188527
54/500: file=d:\dataSet\public\MIR-ST500\54\54_groundtruth.txt, f-measure=0.344615
55/500: file=d:\dataSet\public\MIR-ST500\55\55_groundtruth.txt, f-measure=0.223129
56/500: file=d:\dataSet\public\MIR-ST500\56\56_groundtruth.txt, f-measure=0.272254
57/500: file=d:\dataSet\public\MIR-ST500\57\57_groundtruth.txt, f-measure=0.0893281
58/500: file=d:\dataSet\public\MIR-ST500\58\58_groundtruth.txt, f-measure=0.178662
59/500: file=d:\dataSet\public\MIR-ST500\59\59_groundtruth.txt, f-measure=0.188041
60/500: file=d:\dataSet\public\MIR-ST500\60\60_groundtruth.txt, f-measure=0.18018
61/500: file=d:\dataSet\public\MIR-ST500\61\61_groundtruth.txt, f-measure=0.2
62/500: file=d:\dataSet\public\MIR-ST500\62\62_groundtruth.txt, f-measure=0.178028
63/500: file=d:\dataSet\public\MIR-ST500\63\63_groundtruth.txt, f-measure=0.283276
64/500: file=d:\dataSet\public\MIR-ST500\64\64_groundtruth.txt, f-measure=0.2583
65/500: file=d:\dataSet\public\MIR-ST500\65\65_groundtruth.txt, f-measure=0.257615
66/500: file=d:\dataSet\public\MIR-ST500\66\66_groundtruth.txt, f-measure=0.200782
67/500: file=d:\dataSet\public\MIR-ST500\67\67_groundtruth.txt, f-measure=0.281148
68/500: file=d:\dataSet\public\MIR-ST500\68\68_groundtruth.txt, f-measure=0.423246
69/500: file=d:\dataSet\public\MIR-ST500\69\69_groundtruth.txt, f-measure=0.226855
	Warning: many-to-1 mapping, p=[3;4;5;6;7;10;12;13;14;16;22;23;24;26;27;28;29;31;32;33;34;35;36;37;38;39;40;42;43;44;45;46;47;48;50;51;53;54;55;56;57;58;59;60;61;63;65;67;68;69;70;72;73;74;75;77;78;79;80;81;84;86;87;90;91;93;95;96;98;99;100;102;103;104;105;106;107;108;110;111;112;113;114;115;116;117;118;119;120;123;124;125;126;127;128;129;130;131;133;134;136;137;138;139;140;141;143;146;147;148;148;150;151;156;157;158;159;160;161;163;164;168;171;175;177;178;179;181;182;183;184;186;187;189;190;191;198;199;201;202;203;204;205;207;208;209;211;212;214;216;222;223]
70/500: file=d:\dataSet\public\MIR-ST500\70\70_groundtruth.txt, f-measure=0.199433
71/500: file=d:\dataSet\public\MIR-ST500\71\71_groundtruth.txt, f-measure=0.189147
72/500: file=d:\dataSet\public\MIR-ST500\72\72_groundtruth.txt, f-measure=0.242424
73/500: file=d:\dataSet\public\MIR-ST500\73\73_groundtruth.txt, f-measure=0.238037
74/500: file=d:\dataSet\public\MIR-ST500\74\74_groundtruth.txt, f-measure=0.139233
75/500: file=d:\dataSet\public\MIR-ST500\75\75_groundtruth.txt, f-measure=0.165517
76/500: file=d:\dataSet\public\MIR-ST500\76\76_groundtruth.txt, f-measure=0.258447
77/500: file=d:\dataSet\public\MIR-ST500\77\77_groundtruth.txt, f-measure=0.233514
78/500: file=d:\dataSet\public\MIR-ST500\78\78_groundtruth.txt, f-measure=0.382773
79/500: file=d:\dataSet\public\MIR-ST500\79\79_groundtruth.txt, f-measure=0.247164
80/500: file=d:\dataSet\public\MIR-ST500\80\80_groundtruth.txt, f-measure=0.252147
81/500: file=d:\dataSet\public\MIR-ST500\81\81_groundtruth.txt, f-measure=0.247465
82/500: file=d:\dataSet\public\MIR-ST500\82\82_groundtruth.txt, f-measure=0.350677
83/500: file=d:\dataSet\public\MIR-ST500\83\83_groundtruth.txt, f-measure=0.214257
84/500: file=d:\dataSet\public\MIR-ST500\84\84_groundtruth.txt, f-measure=0.234383
85/500: file=d:\dataSet\public\MIR-ST500\85\85_groundtruth.txt, f-measure=0.238229
86/500: file=d:\dataSet\public\MIR-ST500\86\86_groundtruth.txt, f-measure=0.200976
87/500: file=d:\dataSet\public\MIR-ST500\87\87_groundtruth.txt, f-measure=0.282609
88/500: file=d:\dataSet\public\MIR-ST500\88\88_groundtruth.txt, f-measure=0.319012
89/500: file=d:\dataSet\public\MIR-ST500\89\89_groundtruth.txt, f-measure=0.294708
90/500: file=d:\dataSet\public\MIR-ST500\90\90_groundtruth.txt, f-measure=0.353005
91/500: file=d:\dataSet\public\MIR-ST500\91\91_groundtruth.txt, f-measure=0.380723
92/500: file=d:\dataSet\public\MIR-ST500\92\92_groundtruth.txt, f-measure=0.201268
93/500: file=d:\dataSet\public\MIR-ST500\93\93_groundtruth.txt, f-measure=0.214251
94/500: file=d:\dataSet\public\MIR-ST500\94\94_groundtruth.txt, f-measure=0.109836
95/500: file=d:\dataSet\public\MIR-ST500\95\95_groundtruth.txt, f-measure=0.129084
96/500: file=d:\dataSet\public\MIR-ST500\96\96_groundtruth.txt, f-measure=0.297382
97/500: file=d:\dataSet\public\MIR-ST500\97\97_groundtruth.txt, f-measure=0.283589
98/500: file=d:\dataSet\public\MIR-ST500\98\98_groundtruth.txt, f-measure=0.158948
99/500: file=d:\dataSet\public\MIR-ST500\99\99_groundtruth.txt, f-measure=0.3
100/500: file=d:\dataSet\public\MIR-ST500\100\100_groundtruth.txt, f-measure=0.175378
101/500: file=d:\dataSet\public\MIR-ST500\101\101_groundtruth.txt, f-measure=0.230556
102/500: file=d:\dataSet\public\MIR-ST500\102\102_groundtruth.txt, f-measure=0.209634
103/500: file=d:\dataSet\public\MIR-ST500\103\103_groundtruth.txt, f-measure=0.244396
104/500: file=d:\dataSet\public\MIR-ST500\104\104_groundtruth.txt, f-measure=0.271264
105/500: file=d:\dataSet\public\MIR-ST500\105\105_groundtruth.txt, f-measure=0.209256
106/500: file=d:\dataSet\public\MIR-ST500\106\106_groundtruth.txt, f-measure=0.240175
107/500: file=d:\dataSet\public\MIR-ST500\107\107_groundtruth.txt, f-measure=0.186885
108/500: file=d:\dataSet\public\MIR-ST500\108\108_groundtruth.txt, f-measure=0.300792
109/500: file=d:\dataSet\public\MIR-ST500\109\109_groundtruth.txt, f-measure=0.254945
110/500: file=d:\dataSet\public\MIR-ST500\110\110_groundtruth.txt, f-measure=0.360597
111/500: file=d:\dataSet\public\MIR-ST500\111\111_groundtruth.txt, f-measure=0.217367
112/500: file=d:\dataSet\public\MIR-ST500\112\112_groundtruth.txt, f-measure=0.254393
113/500: file=d:\dataSet\public\MIR-ST500\113\113_groundtruth.txt, f-measure=0.240329
114/500: file=d:\dataSet\public\MIR-ST500\114\114_groundtruth.txt, f-measure=0.178
115/500: file=d:\dataSet\public\MIR-ST500\115\115_groundtruth.txt, f-measure=0.35122
116/500: file=d:\dataSet\public\MIR-ST500\116\116_groundtruth.txt, f-measure=0.3487
117/500: file=d:\dataSet\public\MIR-ST500\117\117_groundtruth.txt, f-measure=0.360291
118/500: file=d:\dataSet\public\MIR-ST500\118\118_groundtruth.txt, f-measure=0.305134
119/500: file=d:\dataSet\public\MIR-ST500\119\119_groundtruth.txt, f-measure=0.30324
120/500: file=d:\dataSet\public\MIR-ST500\120\120_groundtruth.txt, f-measure=0.462687
121/500: file=d:\dataSet\public\MIR-ST500\121\121_groundtruth.txt, f-measure=0.211552
122/500: file=d:\dataSet\public\MIR-ST500\122\122_groundtruth.txt, f-measure=0.271274
123/500: file=d:\dataSet\public\MIR-ST500\123\123_groundtruth.txt, f-measure=0.301919
124/500: file=d:\dataSet\public\MIR-ST500\124\124_groundtruth.txt, f-measure=0.299582
125/500: file=d:\dataSet\public\MIR-ST500\125\125_groundtruth.txt, f-measure=0.315302
126/500: file=d:\dataSet\public\MIR-ST500\126\126_groundtruth.txt, f-measure=0.334142
127/500: file=d:\dataSet\public\MIR-ST500\127\127_groundtruth.txt, f-measure=0.305423
128/500: file=d:\dataSet\public\MIR-ST500\128\128_groundtruth.txt, f-measure=0.328058
129/500: file=d:\dataSet\public\MIR-ST500\129\129_groundtruth.txt, f-measure=0.288722
130/500: file=d:\dataSet\public\MIR-ST500\130\130_groundtruth.txt, f-measure=0.186538
131/500: file=d:\dataSet\public\MIR-ST500\131\131_groundtruth.txt, f-measure=0.293056
132/500: file=d:\dataSet\public\MIR-ST500\132\132_groundtruth.txt, f-measure=0.435986
133/500: file=d:\dataSet\public\MIR-ST500\133\133_groundtruth.txt, f-measure=0.224044
	Warning: many-to-1 mapping, p=[1;2;3;4;6;8;9;10;11;12;13;13;15;16;17;17;18;20;21;23;24;25;25;29;30;31;33;35;37;38;39;40;41;42;43;44;45;46;47;49;50;51;53;55;56;57;59;60;61;62;63;64;65;66;67;68;69;71;72;74;75;76;77;78;80;81;82;83;84;85;86;87;88;92;93;94;96;99;102;106;108;109;110;111;112;113;114;115;117;119;120;121;122;123;124;126;127;128;129;130;131;134]
134/500: file=d:\dataSet\public\MIR-ST500\134\134_groundtruth.txt, f-measure=0.382785
135/500: file=d:\dataSet\public\MIR-ST500\135\135_groundtruth.txt, f-measure=0.159699
136/500: file=d:\dataSet\public\MIR-ST500\136\136_groundtruth.txt, f-measure=0.320472
137/500: file=d:\dataSet\public\MIR-ST500\137\137_groundtruth.txt, f-measure=0.45043
138/500: file=d:\dataSet\public\MIR-ST500\138\138_groundtruth.txt, f-measure=0.23676
139/500: file=d:\dataSet\public\MIR-ST500\139\139_groundtruth.txt, f-measure=0.371375
140/500: file=d:\dataSet\public\MIR-ST500\140\140_groundtruth.txt, f-measure=0.345205
141/500: file=d:\dataSet\public\MIR-ST500\141\141_groundtruth.txt, f-measure=0.353448
142/500: file=d:\dataSet\public\MIR-ST500\142\142_groundtruth.txt, f-measure=0.288838
143/500: file=d:\dataSet\public\MIR-ST500\143\143_groundtruth.txt, f-measure=0.283495
144/500: file=d:\dataSet\public\MIR-ST500\144\144_groundtruth.txt, f-measure=0.281678
145/500: file=d:\dataSet\public\MIR-ST500\145\145_groundtruth.txt, f-measure=0.291513
146/500: file=d:\dataSet\public\MIR-ST500\146\146_groundtruth.txt, f-measure=0.215179
147/500: file=d:\dataSet\public\MIR-ST500\147\147_groundtruth.txt, f-measure=0.16378
148/500: file=d:\dataSet\public\MIR-ST500\148\148_groundtruth.txt, f-measure=0.232174
149/500: file=d:\dataSet\public\MIR-ST500\149\149_groundtruth.txt, f-measure=0.337282
150/500: file=d:\dataSet\public\MIR-ST500\150\150_groundtruth.txt, f-measure=0.386395
151/500: file=d:\dataSet\public\MIR-ST500\151\151_groundtruth.txt, f-measure=0.280309
152/500: file=d:\dataSet\public\MIR-ST500\152\152_groundtruth.txt, f-measure=0.230612
153/500: file=d:\dataSet\public\MIR-ST500\153\153_groundtruth.txt, f-measure=0.178947
154/500: file=d:\dataSet\public\MIR-ST500\154\154_groundtruth.txt, f-measure=0.286081
155/500: file=d:\dataSet\public\MIR-ST500\155\155_groundtruth.txt, f-measure=0.283465
156/500: file=d:\dataSet\public\MIR-ST500\156\156_groundtruth.txt, f-measure=0.279452
157/500: file=d:\dataSet\public\MIR-ST500\157\157_groundtruth.txt, f-measure=0.187
158/500: file=d:\dataSet\public\MIR-ST500\158\158_groundtruth.txt, f-measure=0.381
159/500: file=d:\dataSet\public\MIR-ST500\159\159_groundtruth.txt, f-measure=0.24
160/500: file=d:\dataSet\public\MIR-ST500\160\160_groundtruth.txt, f-measure=0.273317
161/500: file=d:\dataSet\public\MIR-ST500\161\161_groundtruth.txt, f-measure=0.267257
162/500: file=d:\dataSet\public\MIR-ST500\162\162_groundtruth.txt, f-measure=0.191459
163/500: file=d:\dataSet\public\MIR-ST500\163\163_groundtruth.txt, f-measure=0.356069
164/500: file=d:\dataSet\public\MIR-ST500\164\164_groundtruth.txt, f-measure=0.267586
165/500: file=d:\dataSet\public\MIR-ST500\165\165_groundtruth.txt, f-measure=0.273115
166/500: file=d:\dataSet\public\MIR-ST500\166\166_groundtruth.txt, f-measure=0.250696
167/500: file=d:\dataSet\public\MIR-ST500\167\167_groundtruth.txt, f-measure=0.248276
168/500: file=d:\dataSet\public\MIR-ST500\168\168_groundtruth.txt, f-measure=0.306783
169/500: file=d:\dataSet\public\MIR-ST500\169\169_groundtruth.txt, f-measure=0.202393
170/500: file=d:\dataSet\public\MIR-ST500\170\170_groundtruth.txt, f-measure=0.186364
171/500: file=d:\dataSet\public\MIR-ST500\171\171_groundtruth.txt, f-measure=0.186364
172/500: file=d:\dataSet\public\MIR-ST500\172\172_groundtruth.txt, f-measure=0.38342
173/500: file=d:\dataSet\public\MIR-ST500\173\173_groundtruth.txt, f-measure=0.287154
174/500: file=d:\dataSet\public\MIR-ST500\174\174_groundtruth.txt, f-measure=0.296552
175/500: file=d:\dataSet\public\MIR-ST500\175\175_groundtruth.txt, f-measure=0.207477
176/500: file=d:\dataSet\public\MIR-ST500\176\176_groundtruth.txt, f-measure=0.323348
177/500: file=d:\dataSet\public\MIR-ST500\177\177_groundtruth.txt, f-measure=0.301338
178/500: file=d:\dataSet\public\MIR-ST500\178\178_groundtruth.txt, f-measure=0.346505
179/500: file=d:\dataSet\public\MIR-ST500\179\179_groundtruth.txt, f-measure=0.346154
180/500: file=d:\dataSet\public\MIR-ST500\180\180_groundtruth.txt, f-measure=0.328389
181/500: file=d:\dataSet\public\MIR-ST500\181\181_groundtruth.txt, f-measure=0.24973
182/500: file=d:\dataSet\public\MIR-ST500\182\182_groundtruth.txt, f-measure=0.152066
183/500: file=d:\dataSet\public\MIR-ST500\183\183_groundtruth.txt, f-measure=0.297065
184/500: file=d:\dataSet\public\MIR-ST500\184\184_groundtruth.txt, f-measure=0.259507
185/500: file=d:\dataSet\public\MIR-ST500\185\185_groundtruth.txt, f-measure=0.328315
186/500: file=d:\dataSet\public\MIR-ST500\186\186_groundtruth.txt, f-measure=0.259211
187/500: file=d:\dataSet\public\MIR-ST500\187\187_groundtruth.txt, f-measure=0.331401
188/500: file=d:\dataSet\public\MIR-ST500\188\188_groundtruth.txt, f-measure=0.414988
189/500: file=d:\dataSet\public\MIR-ST500\189\189_groundtruth.txt, f-measure=0.348498
190/500: file=d:\dataSet\public\MIR-ST500\190\190_groundtruth.txt, f-measure=0.291975
191/500: file=d:\dataSet\public\MIR-ST500\191\191_groundtruth.txt, f-measure=0.26747
192/500: file=d:\dataSet\public\MIR-ST500\192\192_groundtruth.txt, f-measure=0.248073
193/500: file=d:\dataSet\public\MIR-ST500\193\193_groundtruth.txt, f-measure=0.268778
194/500: file=d:\dataSet\public\MIR-ST500\194\194_groundtruth.txt, f-measure=0.336991
195/500: file=d:\dataSet\public\MIR-ST500\195\195_groundtruth.txt, f-measure=0.298829
196/500: file=d:\dataSet\public\MIR-ST500\196\196_groundtruth.txt, f-measure=0.327854
197/500: file=d:\dataSet\public\MIR-ST500\197\197_groundtruth.txt, f-measure=0.190808
198/500: file=d:\dataSet\public\MIR-ST500\198\198_groundtruth.txt, f-measure=0.358356
199/500: file=d:\dataSet\public\MIR-ST500\199\199_groundtruth.txt, f-measure=0.153434
200/500: file=d:\dataSet\public\MIR-ST500\200\200_groundtruth.txt, f-measure=0.472961
201/500: file=d:\dataSet\public\MIR-ST500\201\201_groundtruth.txt, f-measure=0.386387
202/500: file=d:\dataSet\public\MIR-ST500\202\202_groundtruth.txt, f-measure=0.423799
203/500: file=d:\dataSet\public\MIR-ST500\203\203_groundtruth.txt, f-measure=0.262136
204/500: file=d:\dataSet\public\MIR-ST500\204\204_groundtruth.txt, f-measure=0.326606
205/500: file=d:\dataSet\public\MIR-ST500\205\205_groundtruth.txt, f-measure=0.356728
206/500: file=d:\dataSet\public\MIR-ST500\206\206_groundtruth.txt, f-measure=0.290364
207/500: file=d:\dataSet\public\MIR-ST500\207\207_groundtruth.txt, f-measure=0.293519
208/500: file=d:\dataSet\public\MIR-ST500\208\208_groundtruth.txt, f-measure=0.3625
209/500: file=d:\dataSet\public\MIR-ST500\209\209_groundtruth.txt, f-measure=0.382476
210/500: file=d:\dataSet\public\MIR-ST500\210\210_groundtruth.txt, f-measure=0.290909
211/500: file=d:\dataSet\public\MIR-ST500\211\211_groundtruth.txt, f-measure=0.407071
212/500: file=d:\dataSet\public\MIR-ST500\212\212_groundtruth.txt, f-measure=0.22009
213/500: file=d:\dataSet\public\MIR-ST500\213\213_groundtruth.txt, f-measure=0.243655
214/500: file=d:\dataSet\public\MIR-ST500\214\214_groundtruth.txt, f-measure=0.336364
215/500: file=d:\dataSet\public\MIR-ST500\215\215_groundtruth.txt, f-measure=0.296154
216/500: file=d:\dataSet\public\MIR-ST500\216\216_groundtruth.txt, f-measure=0.206718
217/500: file=d:\dataSet\public\MIR-ST500\217\217_groundtruth.txt, f-measure=0.20995
218/500: file=d:\dataSet\public\MIR-ST500\218\218_groundtruth.txt, f-measure=0.404973
219/500: file=d:\dataSet\public\MIR-ST500\219\219_groundtruth.txt, f-measure=0.260504
220/500: file=d:\dataSet\public\MIR-ST500\220\220_groundtruth.txt, f-measure=0.375845
221/500: file=d:\dataSet\public\MIR-ST500\221\221_groundtruth.txt, f-measure=0.299029
222/500: file=d:\dataSet\public\MIR-ST500\222\222_groundtruth.txt, f-measure=0.267337
223/500: file=d:\dataSet\public\MIR-ST500\223\223_groundtruth.txt, f-measure=0.0707617
224/500: file=d:\dataSet\public\MIR-ST500\224\224_groundtruth.txt, f-measure=0.209745
225/500: file=d:\dataSet\public\MIR-ST500\225\225_groundtruth.txt, f-measure=0.2998
226/500: file=d:\dataSet\public\MIR-ST500\226\226_groundtruth.txt, f-measure=0.345414
227/500: file=d:\dataSet\public\MIR-ST500\227\227_groundtruth.txt, f-measure=0.191813
228/500: file=d:\dataSet\public\MIR-ST500\228\228_groundtruth.txt, f-measure=0.152941
229/500: file=d:\dataSet\public\MIR-ST500\229\229_groundtruth.txt, f-measure=0.109764
230/500: file=d:\dataSet\public\MIR-ST500\230\230_groundtruth.txt, f-measure=0.180087
231/500: file=d:\dataSet\public\MIR-ST500\231\231_groundtruth.txt, f-measure=0.149438
232/500: file=d:\dataSet\public\MIR-ST500\232\232_groundtruth.txt, f-measure=0.120952
233/500: file=d:\dataSet\public\MIR-ST500\233\233_groundtruth.txt, f-measure=0.277209
234/500: file=d:\dataSet\public\MIR-ST500\234\234_groundtruth.txt, f-measure=0.364202
235/500: file=d:\dataSet\public\MIR-ST500\235\235_groundtruth.txt, f-measure=0.186667
236/500: file=d:\dataSet\public\MIR-ST500\236\236_groundtruth.txt, f-measure=0.311111
237/500: file=d:\dataSet\public\MIR-ST500\237\237_groundtruth.txt, f-measure=0.292647
238/500: file=d:\dataSet\public\MIR-ST500\238\238_groundtruth.txt, f-measure=0.212022
239/500: file=d:\dataSet\public\MIR-ST500\239\239_groundtruth.txt, f-measure=0.271807
240/500: file=d:\dataSet\public\MIR-ST500\240\240_groundtruth.txt, f-measure=0.297521
241/500: file=d:\dataSet\public\MIR-ST500\241\241_groundtruth.txt, f-measure=0.413056
242/500: file=d:\dataSet\public\MIR-ST500\242\242_groundtruth.txt, f-measure=0.28642
243/500: file=d:\dataSet\public\MIR-ST500\243\243_groundtruth.txt, f-measure=0.363563
244/500: file=d:\dataSet\public\MIR-ST500\244\244_groundtruth.txt, f-measure=0.407895
245/500: file=d:\dataSet\public\MIR-ST500\245\245_groundtruth.txt, f-measure=0.459887
246/500: file=d:\dataSet\public\MIR-ST500\246\246_groundtruth.txt, f-measure=0.330077
247/500: file=d:\dataSet\public\MIR-ST500\247\247_groundtruth.txt, f-measure=0.385376
248/500: file=d:\dataSet\public\MIR-ST500\248\248_groundtruth.txt, f-measure=0.395027
249/500: file=d:\dataSet\public\MIR-ST500\249\249_groundtruth.txt, f-measure=0.225439
250/500: file=d:\dataSet\public\MIR-ST500\250\250_groundtruth.txt, f-measure=0.244534
251/500: file=d:\dataSet\public\MIR-ST500\251\251_groundtruth.txt, f-measure=0.406983
252/500: file=d:\dataSet\public\MIR-ST500\252\252_groundtruth.txt, f-measure=0.301085
253/500: file=d:\dataSet\public\MIR-ST500\253\253_groundtruth.txt, f-measure=0.23876
254/500: file=d:\dataSet\public\MIR-ST500\254\254_groundtruth.txt, f-measure=0.271584
255/500: file=d:\dataSet\public\MIR-ST500\255\255_groundtruth.txt, f-measure=0.26875
256/500: file=d:\dataSet\public\MIR-ST500\256\256_groundtruth.txt, f-measure=0.305
257/500: file=d:\dataSet\public\MIR-ST500\257\257_groundtruth.txt, f-measure=0.433761
258/500: file=d:\dataSet\public\MIR-ST500\258\258_groundtruth.txt, f-measure=0.247967
259/500: file=d:\dataSet\public\MIR-ST500\259\259_groundtruth.txt, f-measure=0.384932
260/500: file=d:\dataSet\public\MIR-ST500\260\260_groundtruth.txt, f-measure=0.286792
261/500: file=d:\dataSet\public\MIR-ST500\261\261_groundtruth.txt, f-measure=0.193548
262/500: file=d:\dataSet\public\MIR-ST500\262\262_groundtruth.txt, f-measure=0.270064
263/500: file=d:\dataSet\public\MIR-ST500\263\263_groundtruth.txt, f-measure=0.348108
264/500: file=d:\dataSet\public\MIR-ST500\264\264_groundtruth.txt, f-measure=0.284762
265/500: file=d:\dataSet\public\MIR-ST500\265\265_groundtruth.txt, f-measure=0.289498
266/500: file=d:\dataSet\public\MIR-ST500\266\266_groundtruth.txt, f-measure=0.22155
267/500: file=d:\dataSet\public\MIR-ST500\267\267_groundtruth.txt, f-measure=0.264396
268/500: file=d:\dataSet\public\MIR-ST500\268\268_groundtruth.txt, f-measure=0.250456
269/500: file=d:\dataSet\public\MIR-ST500\269\269_groundtruth.txt, f-measure=0.344165
270/500: file=d:\dataSet\public\MIR-ST500\270\270_groundtruth.txt, f-measure=0.296689
271/500: file=d:\dataSet\public\MIR-ST500\271\271_groundtruth.txt, f-measure=0.282974
272/500: file=d:\dataSet\public\MIR-ST500\272\272_groundtruth.txt, f-measure=0.276106
273/500: file=d:\dataSet\public\MIR-ST500\273\273_groundtruth.txt, f-measure=0.303279
274/500: file=d:\dataSet\public\MIR-ST500\274\274_groundtruth.txt, f-measure=0.160889
275/500: file=d:\dataSet\public\MIR-ST500\275\275_groundtruth.txt, f-measure=0.221754
276/500: file=d:\dataSet\public\MIR-ST500\276\276_groundtruth.txt, f-measure=0.148652
277/500: file=d:\dataSet\public\MIR-ST500\277\277_groundtruth.txt, f-measure=0.170342
278/500: file=d:\dataSet\public\MIR-ST500\278\278_groundtruth.txt, f-measure=0.326154
279/500: file=d:\dataSet\public\MIR-ST500\279\279_groundtruth.txt, f-measure=0.307399
280/500: file=d:\dataSet\public\MIR-ST500\280\280_groundtruth.txt, f-measure=0.295768
281/500: file=d:\dataSet\public\MIR-ST500\281\281_groundtruth.txt, f-measure=0.285455
282/500: file=d:\dataSet\public\MIR-ST500\282\282_groundtruth.txt, f-measure=0.371882
283/500: file=d:\dataSet\public\MIR-ST500\283\283_groundtruth.txt, f-measure=0.352607
284/500: file=d:\dataSet\public\MIR-ST500\284\284_groundtruth.txt, f-measure=0.169953
285/500: file=d:\dataSet\public\MIR-ST500\285\285_groundtruth.txt, f-measure=0.207143
286/500: file=d:\dataSet\public\MIR-ST500\286\286_groundtruth.txt, f-measure=0.232669
287/500: file=d:\dataSet\public\MIR-ST500\287\287_groundtruth.txt, f-measure=0.199228
288/500: file=d:\dataSet\public\MIR-ST500\288\288_groundtruth.txt, f-measure=0.140171
289/500: file=d:\dataSet\public\MIR-ST500\289\289_groundtruth.txt, f-measure=0.251678
290/500: file=d:\dataSet\public\MIR-ST500\290\290_groundtruth.txt, f-measure=0.206604
291/500: file=d:\dataSet\public\MIR-ST500\291\291_groundtruth.txt, f-measure=0.195876
292/500: file=d:\dataSet\public\MIR-ST500\292\292_groundtruth.txt, f-measure=0.1125
293/500: file=d:\dataSet\public\MIR-ST500\293\293_groundtruth.txt, f-measure=0.145274
294/500: file=d:\dataSet\public\MIR-ST500\294\294_groundtruth.txt, f-measure=0.167715
295/500: file=d:\dataSet\public\MIR-ST500\295\295_groundtruth.txt, f-measure=0.337916
296/500: file=d:\dataSet\public\MIR-ST500\296\296_groundtruth.txt, f-measure=0.152019
297/500: file=d:\dataSet\public\MIR-ST500\297\297_groundtruth.txt, f-measure=0.347795
298/500: file=d:\dataSet\public\MIR-ST500\298\298_groundtruth.txt, f-measure=0.434156
299/500: file=d:\dataSet\public\MIR-ST500\299\299_groundtruth.txt, f-measure=0.266398
300/500: file=d:\dataSet\public\MIR-ST500\300\300_groundtruth.txt, f-measure=0.31348
301/500: file=d:\dataSet\public\MIR-ST500\301\301_groundtruth.txt, f-measure=0.375
302/500: file=d:\dataSet\public\MIR-ST500\302\302_groundtruth.txt, f-measure=0.3744
303/500: file=d:\dataSet\public\MIR-ST500\303\303_groundtruth.txt, f-measure=0.304521
304/500: file=d:\dataSet\public\MIR-ST500\304\304_groundtruth.txt, f-measure=0.353398
305/500: file=d:\dataSet\public\MIR-ST500\305\305_groundtruth.txt, f-measure=0.277282
306/500: file=d:\dataSet\public\MIR-ST500\306\306_groundtruth.txt, f-measure=0.254025
307/500: file=d:\dataSet\public\MIR-ST500\307\307_groundtruth.txt, f-measure=0.436364
308/500: file=d:\dataSet\public\MIR-ST500\308\308_groundtruth.txt, f-measure=0.27449
309/500: file=d:\dataSet\public\MIR-ST500\309\309_groundtruth.txt, f-measure=0.379882
310/500: file=d:\dataSet\public\MIR-ST500\310\310_groundtruth.txt, f-measure=0.380328
311/500: file=d:\dataSet\public\MIR-ST500\311\311_groundtruth.txt, f-measure=0.373933
312/500: file=d:\dataSet\public\MIR-ST500\312\312_groundtruth.txt, f-measure=0.316302
313/500: file=d:\dataSet\public\MIR-ST500\313\313_groundtruth.txt, f-measure=0.45122
314/500: file=d:\dataSet\public\MIR-ST500\314\314_groundtruth.txt, f-measure=0.263087
315/500: file=d:\dataSet\public\MIR-ST500\315\315_groundtruth.txt, f-measure=0.361473
316/500: file=d:\dataSet\public\MIR-ST500\316\316_groundtruth.txt, f-measure=0.360763
317/500: file=d:\dataSet\public\MIR-ST500\317\317_groundtruth.txt, f-measure=0.349727
318/500: file=d:\dataSet\public\MIR-ST500\318\318_groundtruth.txt, f-measure=0.402505
319/500: file=d:\dataSet\public\MIR-ST500\319\319_groundtruth.txt, f-measure=0.317493
320/500: file=d:\dataSet\public\MIR-ST500\320\320_groundtruth.txt, f-measure=0.3025
321/500: file=d:\dataSet\public\MIR-ST500\321\321_groundtruth.txt, f-measure=0.182857
322/500: file=d:\dataSet\public\MIR-ST500\322\322_groundtruth.txt, f-measure=0.263918
323/500: file=d:\dataSet\public\MIR-ST500\323\323_groundtruth.txt, f-measure=0.252811
324/500: file=d:\dataSet\public\MIR-ST500\324\324_groundtruth.txt, f-measure=0.184127
325/500: file=d:\dataSet\public\MIR-ST500\325\325_groundtruth.txt, f-measure=0.251974
326/500: file=d:\dataSet\public\MIR-ST500\326\326_groundtruth.txt, f-measure=0.327517
327/500: file=d:\dataSet\public\MIR-ST500\327\327_groundtruth.txt, f-measure=0.160694
328/500: file=d:\dataSet\public\MIR-ST500\328\328_groundtruth.txt, f-measure=0.108271
329/500: file=d:\dataSet\public\MIR-ST500\329\329_groundtruth.txt, f-measure=0.262585
330/500: file=d:\dataSet\public\MIR-ST500\330\330_groundtruth.txt, f-measure=0.224138
331/500: file=d:\dataSet\public\MIR-ST500\331\331_groundtruth.txt, f-measure=0.177106
332/500: file=d:\dataSet\public\MIR-ST500\332\332_groundtruth.txt, f-measure=0.286093
333/500: file=d:\dataSet\public\MIR-ST500\333\333_groundtruth.txt, f-measure=0.176583
334/500: file=d:\dataSet\public\MIR-ST500\334\334_groundtruth.txt, f-measure=0.245585
335/500: file=d:\dataSet\public\MIR-ST500\335\335_groundtruth.txt, f-measure=0.264631
336/500: file=d:\dataSet\public\MIR-ST500\336\336_groundtruth.txt, f-measure=0.271906
337/500: file=d:\dataSet\public\MIR-ST500\337\337_groundtruth.txt, f-measure=0.303644
338/500: file=d:\dataSet\public\MIR-ST500\338\338_groundtruth.txt, f-measure=0.441226
339/500: file=d:\dataSet\public\MIR-ST500\339\339_groundtruth.txt, f-measure=0.333879
340/500: file=d:\dataSet\public\MIR-ST500\340\340_groundtruth.txt, f-measure=0.260274
341/500: file=d:\dataSet\public\MIR-ST500\341\341_groundtruth.txt, f-measure=0.280624
342/500: file=d:\dataSet\public\MIR-ST500\342\342_groundtruth.txt, f-measure=0.118164
343/500: file=d:\dataSet\public\MIR-ST500\343\343_groundtruth.txt, f-measure=0.263029
344/500: file=d:\dataSet\public\MIR-ST500\344\344_groundtruth.txt, f-measure=0.204167
345/500: file=d:\dataSet\public\MIR-ST500\345\345_groundtruth.txt, f-measure=0.291089
346/500: file=d:\dataSet\public\MIR-ST500\346\346_groundtruth.txt, f-measure=0.387268
347/500: file=d:\dataSet\public\MIR-ST500\347\347_groundtruth.txt, f-measure=0.295023
348/500: file=d:\dataSet\public\MIR-ST500\348\348_groundtruth.txt, f-measure=0.252708
349/500: file=d:\dataSet\public\MIR-ST500\349\349_groundtruth.txt, f-measure=0.327454
350/500: file=d:\dataSet\public\MIR-ST500\350\350_groundtruth.txt, f-measure=0.268571
351/500: file=d:\dataSet\public\MIR-ST500\351\351_groundtruth.txt, f-measure=0.32378
352/500: file=d:\dataSet\public\MIR-ST500\352\352_groundtruth.txt, f-measure=0.305055
353/500: file=d:\dataSet\public\MIR-ST500\353\353_groundtruth.txt, f-measure=0.352787
354/500: file=d:\dataSet\public\MIR-ST500\354\354_groundtruth.txt, f-measure=0.126923
355/500: file=d:\dataSet\public\MIR-ST500\355\355_groundtruth.txt, f-measure=0.451948
356/500: file=d:\dataSet\public\MIR-ST500\356\356_groundtruth.txt, f-measure=0.233689
357/500: file=d:\dataSet\public\MIR-ST500\357\357_groundtruth.txt, f-measure=0.215613
358/500: file=d:\dataSet\public\MIR-ST500\358\358_groundtruth.txt, f-measure=0.24
359/500: file=d:\dataSet\public\MIR-ST500\359\359_groundtruth.txt, f-measure=0.175732
360/500: file=d:\dataSet\public\MIR-ST500\360\360_groundtruth.txt, f-measure=0.284848
361/500: file=d:\dataSet\public\MIR-ST500\361\361_groundtruth.txt, f-measure=0.206923
362/500: file=d:\dataSet\public\MIR-ST500\362\362_groundtruth.txt, f-measure=0.0908078
363/500: file=d:\dataSet\public\MIR-ST500\363\363_groundtruth.txt, f-measure=0.284348
364/500: file=d:\dataSet\public\MIR-ST500\364\364_groundtruth.txt, f-measure=0.20815
365/500: file=d:\dataSet\public\MIR-ST500\365\365_groundtruth.txt, f-measure=0.386603
366/500: file=d:\dataSet\public\MIR-ST500\366\366_groundtruth.txt, f-measure=0.240541
367/500: file=d:\dataSet\public\MIR-ST500\367\367_groundtruth.txt, f-measure=0.311753
368/500: file=d:\dataSet\public\MIR-ST500\368\368_groundtruth.txt, f-measure=0.313178
369/500: file=d:\dataSet\public\MIR-ST500\369\369_groundtruth.txt, f-measure=0.309747
370/500: file=d:\dataSet\public\MIR-ST500\370\370_groundtruth.txt, f-measure=0.21784
371/500: file=d:\dataSet\public\MIR-ST500\371\371_groundtruth.txt, f-measure=0.161625
372/500: file=d:\dataSet\public\MIR-ST500\372\372_groundtruth.txt, f-measure=0.320988
373/500: file=d:\dataSet\public\MIR-ST500\373\373_groundtruth.txt, f-measure=0.435942
374/500: file=d:\dataSet\public\MIR-ST500\374\374_groundtruth.txt, f-measure=0.323506
375/500: file=d:\dataSet\public\MIR-ST500\375\375_groundtruth.txt, f-measure=0.267732
376/500: file=d:\dataSet\public\MIR-ST500\376\376_groundtruth.txt, f-measure=0.311905
377/500: file=d:\dataSet\public\MIR-ST500\377\377_groundtruth.txt, f-measure=0.264463
378/500: file=d:\dataSet\public\MIR-ST500\378\378_groundtruth.txt, f-measure=0.240307
379/500: file=d:\dataSet\public\MIR-ST500\379\379_groundtruth.txt, f-measure=0.312339
380/500: file=d:\dataSet\public\MIR-ST500\380\380_groundtruth.txt, f-measure=0.375632
381/500: file=d:\dataSet\public\MIR-ST500\381\381_groundtruth.txt, f-measure=0.211438
382/500: file=d:\dataSet\public\MIR-ST500\382\382_groundtruth.txt, f-measure=0.294891
383/500: file=d:\dataSet\public\MIR-ST500\383\383_groundtruth.txt, f-measure=0.334458
384/500: file=d:\dataSet\public\MIR-ST500\384\384_groundtruth.txt, f-measure=0.368539
385/500: file=d:\dataSet\public\MIR-ST500\385\385_groundtruth.txt, f-measure=0.284211
386/500: file=d:\dataSet\public\MIR-ST500\386\386_groundtruth.txt, f-measure=0.324771
387/500: file=d:\dataSet\public\MIR-ST500\387\387_groundtruth.txt, f-measure=0.298829
388/500: file=d:\dataSet\public\MIR-ST500\388\388_groundtruth.txt, f-measure=0.32967
389/500: file=d:\dataSet\public\MIR-ST500\389\389_groundtruth.txt, f-measure=0.447962
390/500: file=d:\dataSet\public\MIR-ST500\390\390_groundtruth.txt, f-measure=0.274556
391/500: file=d:\dataSet\public\MIR-ST500\391\391_groundtruth.txt, f-measure=0.356989
392/500: file=d:\dataSet\public\MIR-ST500\392\392_groundtruth.txt, f-measure=0.350345
393/500: file=d:\dataSet\public\MIR-ST500\393\393_groundtruth.txt, f-measure=0.233926
394/500: file=d:\dataSet\public\MIR-ST500\394\394_groundtruth.txt, f-measure=0.233973
395/500: file=d:\dataSet\public\MIR-ST500\395\395_groundtruth.txt, f-measure=0.337423
396/500: file=d:\dataSet\public\MIR-ST500\396\396_groundtruth.txt, f-measure=0.239394
397/500: file=d:\dataSet\public\MIR-ST500\397\397_groundtruth.txt, f-measure=0.2
398/500: file=d:\dataSet\public\MIR-ST500\398\398_groundtruth.txt, f-measure=0.288682
399/500: file=d:\dataSet\public\MIR-ST500\399\399_groundtruth.txt, f-measure=0.397183
400/500: file=d:\dataSet\public\MIR-ST500\400\400_groundtruth.txt, f-measure=0.317098
401/500: file=d:\dataSet\public\MIR-ST500\401\401_groundtruth.txt, f-measure=0.2
402/500: file=d:\dataSet\public\MIR-ST500\402\402_groundtruth.txt, f-measure=0.184524
403/500: file=d:\dataSet\public\MIR-ST500\403\403_groundtruth.txt, f-measure=0.305703
404/500: file=d:\dataSet\public\MIR-ST500\404\404_groundtruth.txt, f-measure=0.191708
405/500: file=d:\dataSet\public\MIR-ST500\405\405_groundtruth.txt, f-measure=0.295312
406/500: file=d:\dataSet\public\MIR-ST500\406\406_groundtruth.txt, f-measure=0.331507
407/500: file=d:\dataSet\public\MIR-ST500\407\407_groundtruth.txt, f-measure=0.189189
408/500: file=d:\dataSet\public\MIR-ST500\408\408_groundtruth.txt, f-measure=0.216667
409/500: file=d:\dataSet\public\MIR-ST500\409\409_groundtruth.txt, f-measure=0.26593
410/500: file=d:\dataSet\public\MIR-ST500\410\410_groundtruth.txt, f-measure=0.411336
411/500: file=d:\dataSet\public\MIR-ST500\411\411_groundtruth.txt, f-measure=0.370037
412/500: file=d:\dataSet\public\MIR-ST500\412\412_groundtruth.txt, f-measure=0.35288
413/500: file=d:\dataSet\public\MIR-ST500\413\413_groundtruth.txt, f-measure=0.475472
414/500: file=d:\dataSet\public\MIR-ST500\414\414_groundtruth.txt, f-measure=0.369174
415/500: file=d:\dataSet\public\MIR-ST500\415\415_groundtruth.txt, f-measure=0.356688
416/500: file=d:\dataSet\public\MIR-ST500\416\416_groundtruth.txt, f-measure=0.274715
417/500: file=d:\dataSet\public\MIR-ST500\417\417_groundtruth.txt, f-measure=0.225603
418/500: file=d:\dataSet\public\MIR-ST500\418\418_groundtruth.txt, f-measure=0.247319
419/500: file=d:\dataSet\public\MIR-ST500\419\419_groundtruth.txt, f-measure=0.438606
420/500: file=d:\dataSet\public\MIR-ST500\420\420_groundtruth.txt, f-measure=0.241524
421/500: file=d:\dataSet\public\MIR-ST500\421\421_groundtruth.txt, f-measure=0.368382
422/500: file=d:\dataSet\public\MIR-ST500\422\422_groundtruth.txt, f-measure=0.201237
423/500: file=d:\dataSet\public\MIR-ST500\423\423_groundtruth.txt, f-measure=0.335934
424/500: file=d:\dataSet\public\MIR-ST500\424\424_groundtruth.txt, f-measure=0.34876
425/500: file=d:\dataSet\public\MIR-ST500\425\425_groundtruth.txt, f-measure=0.398361
426/500: file=d:\dataSet\public\MIR-ST500\426\426_groundtruth.txt, f-measure=0.327438
427/500: file=d:\dataSet\public\MIR-ST500\427\427_groundtruth.txt, f-measure=0.343498
428/500: file=d:\dataSet\public\MIR-ST500\428\428_groundtruth.txt, f-measure=0.252918
429/500: file=d:\dataSet\public\MIR-ST500\429\429_groundtruth.txt, f-measure=0.239679
430/500: file=d:\dataSet\public\MIR-ST500\430\430_groundtruth.txt, f-measure=0.259817
431/500: file=d:\dataSet\public\MIR-ST500\431\431_groundtruth.txt, f-measure=0.252282
432/500: file=d:\dataSet\public\MIR-ST500\432\432_groundtruth.txt, f-measure=0.360694
433/500: file=d:\dataSet\public\MIR-ST500\433\433_groundtruth.txt, f-measure=0.243594
434/500: file=d:\dataSet\public\MIR-ST500\434\434_groundtruth.txt, f-measure=0.257364
435/500: file=d:\dataSet\public\MIR-ST500\435\435_groundtruth.txt, f-measure=0.26501
436/500: file=d:\dataSet\public\MIR-ST500\436\436_groundtruth.txt, f-measure=0.293559
437/500: file=d:\dataSet\public\MIR-ST500\437\437_groundtruth.txt, f-measure=0.278315
438/500: file=d:\dataSet\public\MIR-ST500\438\438_groundtruth.txt, f-measure=0.34657
439/500: file=d:\dataSet\public\MIR-ST500\439\439_groundtruth.txt, f-measure=0.257516
440/500: file=d:\dataSet\public\MIR-ST500\440\440_groundtruth.txt, f-measure=0.364286
441/500: file=d:\dataSet\public\MIR-ST500\441\441_groundtruth.txt, f-measure=0.238627
442/500: file=d:\dataSet\public\MIR-ST500\442\442_groundtruth.txt, f-measure=0.260769
443/500: file=d:\dataSet\public\MIR-ST500\443\443_groundtruth.txt, f-measure=0.319048
444/500: file=d:\dataSet\public\MIR-ST500\444\444_groundtruth.txt, f-measure=0.110698
445/500: file=d:\dataSet\public\MIR-ST500\445\445_groundtruth.txt, f-measure=0.280349
446/500: file=d:\dataSet\public\MIR-ST500\446\446_groundtruth.txt, f-measure=0.348333
447/500: file=d:\dataSet\public\MIR-ST500\447\447_groundtruth.txt, f-measure=0.229213
448/500: file=d:\dataSet\public\MIR-ST500\448\448_groundtruth.txt, f-measure=0.254
449/500: file=d:\dataSet\public\MIR-ST500\449\449_groundtruth.txt, f-measure=0.343695
450/500: file=d:\dataSet\public\MIR-ST500\450\450_groundtruth.txt, f-measure=0.219221
451/500: file=d:\dataSet\public\MIR-ST500\451\451_groundtruth.txt, f-measure=0.30303
452/500: file=d:\dataSet\public\MIR-ST500\452\452_groundtruth.txt, f-measure=0.27514
453/500: file=d:\dataSet\public\MIR-ST500\453\453_groundtruth.txt, f-measure=0.151084
454/500: file=d:\dataSet\public\MIR-ST500\454\454_groundtruth.txt, f-measure=0.382935
455/500: file=d:\dataSet\public\MIR-ST500\455\455_groundtruth.txt, f-measure=0.219225
456/500: file=d:\dataSet\public\MIR-ST500\456\456_groundtruth.txt, f-measure=0.376224
457/500: file=d:\dataSet\public\MIR-ST500\457\457_groundtruth.txt, f-measure=0.338095
458/500: file=d:\dataSet\public\MIR-ST500\458\458_groundtruth.txt, f-measure=0.36092
	Warning: many-to-1 mapping, p=[6;7;8;9;10;12;13;14;15;17;19;20;21;22;26;27;28;29;30;31;33;35;36;39;40;41;42;43;45;46;47;48;49;50;51;52;54;56;61;62;64;66;67;68;72;73;75;76;77;78;80;82;83;84;85;86;88;92;93;94;94;95;98;99;100;101;102;103;104;107;108;109;110;111;115;116;120;121;122;123;124;125;127;129;131;132;133;135;137;138;140;141;147;148;151;153;156;158;159;160;161;163;164;165;166;167;168;169;172;174;175;176;177;178;179;181;183;184;186;187;188;189;190;191;193]
459/500: file=d:\dataSet\public\MIR-ST500\459\459_groundtruth.txt, f-measure=0.284982
460/500: file=d:\dataSet\public\MIR-ST500\460\460_groundtruth.txt, f-measure=0.267763
461/500: file=d:\dataSet\public\MIR-ST500\461\461_groundtruth.txt, f-measure=0.318302
462/500: file=d:\dataSet\public\MIR-ST500\462\462_groundtruth.txt, f-measure=0.353684
463/500: file=d:\dataSet\public\MIR-ST500\463\463_groundtruth.txt, f-measure=0.355556
464/500: file=d:\dataSet\public\MIR-ST500\464\464_groundtruth.txt, f-measure=0.23754
465/500: file=d:\dataSet\public\MIR-ST500\465\465_groundtruth.txt, f-measure=0.249324
466/500: file=d:\dataSet\public\MIR-ST500\466\466_groundtruth.txt, f-measure=0.207471
467/500: file=d:\dataSet\public\MIR-ST500\467\467_groundtruth.txt, f-measure=0.277494
468/500: file=d:\dataSet\public\MIR-ST500\468\468_groundtruth.txt, f-measure=0.272269
469/500: file=d:\dataSet\public\MIR-ST500\469\469_groundtruth.txt, f-measure=0.260787
470/500: file=d:\dataSet\public\MIR-ST500\470\470_groundtruth.txt, f-measure=0.299578
471/500: file=d:\dataSet\public\MIR-ST500\471\471_groundtruth.txt, f-measure=0.227925
472/500: file=d:\dataSet\public\MIR-ST500\472\472_groundtruth.txt, f-measure=0.306942
473/500: file=d:\dataSet\public\MIR-ST500\473\473_groundtruth.txt, f-measure=0.317448
474/500: file=d:\dataSet\public\MIR-ST500\474\474_groundtruth.txt, f-measure=0.229344
475/500: file=d:\dataSet\public\MIR-ST500\475\475_groundtruth.txt, f-measure=0.317431
476/500: file=d:\dataSet\public\MIR-ST500\476\476_groundtruth.txt, f-measure=0.273778
477/500: file=d:\dataSet\public\MIR-ST500\477\477_groundtruth.txt, f-measure=0.433766
478/500: file=d:\dataSet\public\MIR-ST500\478\478_groundtruth.txt, f-measure=0.290625
479/500: file=d:\dataSet\public\MIR-ST500\479\479_groundtruth.txt, f-measure=0.351648
480/500: file=d:\dataSet\public\MIR-ST500\480\480_groundtruth.txt, f-measure=0.229424
481/500: file=d:\dataSet\public\MIR-ST500\481\481_groundtruth.txt, f-measure=0.407181
482/500: file=d:\dataSet\public\MIR-ST500\482\482_groundtruth.txt, f-measure=0.220155
483/500: file=d:\dataSet\public\MIR-ST500\483\483_groundtruth.txt, f-measure=0.319662
484/500: file=d:\dataSet\public\MIR-ST500\484\484_groundtruth.txt, f-measure=0.42406
485/500: file=d:\dataSet\public\MIR-ST500\485\485_groundtruth.txt, f-measure=0.377982
486/500: file=d:\dataSet\public\MIR-ST500\486\486_groundtruth.txt, f-measure=0.412339
487/500: file=d:\dataSet\public\MIR-ST500\487\487_groundtruth.txt, f-measure=0.200901
488/500: file=d:\dataSet\public\MIR-ST500\488\488_groundtruth.txt, f-measure=0.297528
489/500: file=d:\dataSet\public\MIR-ST500\489\489_groundtruth.txt, f-measure=0.296907
490/500: file=d:\dataSet\public\MIR-ST500\490\490_groundtruth.txt, f-measure=0.266667
491/500: file=d:\dataSet\public\MIR-ST500\491\491_groundtruth.txt, f-measure=0.418234
492/500: file=d:\dataSet\public\MIR-ST500\492\492_groundtruth.txt, f-measure=0.353514
493/500: file=d:\dataSet\public\MIR-ST500\493\493_groundtruth.txt, f-measure=0.295688
494/500: file=d:\dataSet\public\MIR-ST500\494\494_groundtruth.txt, f-measure=0.252814
495/500: file=d:\dataSet\public\MIR-ST500\495\495_groundtruth.txt, f-measure=0.436842
496/500: file=d:\dataSet\public\MIR-ST500\496\496_groundtruth.txt, f-measure=0.214884
497/500: file=d:\dataSet\public\MIR-ST500\497\497_groundtruth.txt, f-measure=0.234978
498/500: file=d:\dataSet\public\MIR-ST500\498\498_groundtruth.txt, f-measure=0.222407
499/500: file=d:\dataSet\public\MIR-ST500\499\499_groundtruth.txt, f-measure=0.356386
500/500: file=d:\dataSet\public\MIR-ST500\500\500_groundtruth.txt, f-measure=0.223464
Time for pv2note() and noteVecSim(): 71.2521 sec
Overall f-measure=0.27856

Since the above procedure will be invoked many times for iterative performance optimization, we shall use several function to finish the above task. First of all, let's read the dataset all at once:

dsDir='d:/dataSet/public/MIR-ST500';
[melody, time]=stDsRead(dsDir);		% Read the dataset
fprintf('Time for reading "%s" = %g sec\n', dsDir, time);
Time for reading "d:/dataSet/public/MIR-ST500" = 72.7803 sec

Then we can try to do note detection:

opt=stDsPredict('defaultOpt');
[melody02, time]=stDsPredict(melody, opt, 1);	% Evaluate the performance
fprintf('Elapsed time=%g sec.\n', time);
1/500: gtFile=d:\dataSet\public\MIR-ST500\1\1_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\1\1_feature.json
2/500: gtFile=d:\dataSet\public\MIR-ST500\2\2_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\2\2_feature.json
3/500: gtFile=d:\dataSet\public\MIR-ST500\3\3_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\3\3_feature.json
4/500: gtFile=d:\dataSet\public\MIR-ST500\4\4_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\4\4_feature.json
5/500: gtFile=d:\dataSet\public\MIR-ST500\5\5_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\5\5_feature.json
6/500: gtFile=d:\dataSet\public\MIR-ST500\6\6_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\6\6_feature.json
7/500: gtFile=d:\dataSet\public\MIR-ST500\7\7_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\7\7_feature.json
8/500: gtFile=d:\dataSet\public\MIR-ST500\8\8_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\8\8_feature.json
9/500: gtFile=d:\dataSet\public\MIR-ST500\9\9_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\9\9_feature.json
10/500: gtFile=d:\dataSet\public\MIR-ST500\10\10_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\10\10_feature.json
11/500: gtFile=d:\dataSet\public\MIR-ST500\11\11_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\11\11_feature.json
12/500: gtFile=d:\dataSet\public\MIR-ST500\12\12_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\12\12_feature.json
13/500: gtFile=d:\dataSet\public\MIR-ST500\13\13_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\13\13_feature.json
14/500: gtFile=d:\dataSet\public\MIR-ST500\14\14_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\14\14_feature.json
15/500: gtFile=d:\dataSet\public\MIR-ST500\15\15_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\15\15_feature.json
16/500: gtFile=d:\dataSet\public\MIR-ST500\16\16_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\16\16_feature.json
17/500: gtFile=d:\dataSet\public\MIR-ST500\17\17_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\17\17_feature.json
18/500: gtFile=d:\dataSet\public\MIR-ST500\18\18_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\18\18_feature.json
19/500: gtFile=d:\dataSet\public\MIR-ST500\19\19_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\19\19_feature.json
20/500: gtFile=d:\dataSet\public\MIR-ST500\20\20_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\20\20_feature.json
21/500: gtFile=d:\dataSet\public\MIR-ST500\21\21_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\21\21_feature.json
22/500: gtFile=d:\dataSet\public\MIR-ST500\22\22_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\22\22_feature.json
23/500: gtFile=d:\dataSet\public\MIR-ST500\23\23_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\23\23_feature.json
24/500: gtFile=d:\dataSet\public\MIR-ST500\24\24_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\24\24_feature.json
25/500: gtFile=d:\dataSet\public\MIR-ST500\25\25_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\25\25_feature.json
26/500: gtFile=d:\dataSet\public\MIR-ST500\26\26_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\26\26_feature.json
27/500: gtFile=d:\dataSet\public\MIR-ST500\27\27_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\27\27_feature.json
28/500: gtFile=d:\dataSet\public\MIR-ST500\28\28_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\28\28_feature.json
29/500: gtFile=d:\dataSet\public\MIR-ST500\29\29_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\29\29_feature.json
30/500: gtFile=d:\dataSet\public\MIR-ST500\30\30_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\30\30_feature.json
31/500: gtFile=d:\dataSet\public\MIR-ST500\31\31_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\31\31_feature.json
32/500: gtFile=d:\dataSet\public\MIR-ST500\32\32_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\32\32_feature.json
33/500: gtFile=d:\dataSet\public\MIR-ST500\33\33_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\33\33_feature.json
34/500: gtFile=d:\dataSet\public\MIR-ST500\34\34_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\34\34_feature.json
35/500: gtFile=d:\dataSet\public\MIR-ST500\35\35_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\35\35_feature.json
36/500: gtFile=d:\dataSet\public\MIR-ST500\36\36_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\36\36_feature.json
37/500: gtFile=d:\dataSet\public\MIR-ST500\37\37_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\37\37_feature.json
38/500: gtFile=d:\dataSet\public\MIR-ST500\38\38_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\38\38_feature.json
39/500: gtFile=d:\dataSet\public\MIR-ST500\39\39_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\39\39_feature.json
40/500: gtFile=d:\dataSet\public\MIR-ST500\40\40_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\40\40_feature.json
41/500: gtFile=d:\dataSet\public\MIR-ST500\41\41_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\41\41_feature.json
42/500: gtFile=d:\dataSet\public\MIR-ST500\42\42_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\42\42_feature.json
43/500: gtFile=d:\dataSet\public\MIR-ST500\43\43_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\43\43_feature.json
44/500: gtFile=d:\dataSet\public\MIR-ST500\44\44_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\44\44_feature.json
45/500: gtFile=d:\dataSet\public\MIR-ST500\45\45_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\45\45_feature.json
46/500: gtFile=d:\dataSet\public\MIR-ST500\46\46_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\46\46_feature.json
47/500: gtFile=d:\dataSet\public\MIR-ST500\47\47_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\47\47_feature.json
48/500: gtFile=d:\dataSet\public\MIR-ST500\48\48_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\48\48_feature.json
49/500: gtFile=d:\dataSet\public\MIR-ST500\49\49_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\49\49_feature.json
50/500: gtFile=d:\dataSet\public\MIR-ST500\50\50_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\50\50_feature.json
51/500: gtFile=d:\dataSet\public\MIR-ST500\51\51_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\51\51_feature.json
52/500: gtFile=d:\dataSet\public\MIR-ST500\52\52_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\52\52_feature.json
53/500: gtFile=d:\dataSet\public\MIR-ST500\53\53_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\53\53_feature.json
54/500: gtFile=d:\dataSet\public\MIR-ST500\54\54_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\54\54_feature.json
55/500: gtFile=d:\dataSet\public\MIR-ST500\55\55_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\55\55_feature.json
56/500: gtFile=d:\dataSet\public\MIR-ST500\56\56_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\56\56_feature.json
57/500: gtFile=d:\dataSet\public\MIR-ST500\57\57_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\57\57_feature.json
58/500: gtFile=d:\dataSet\public\MIR-ST500\58\58_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\58\58_feature.json
59/500: gtFile=d:\dataSet\public\MIR-ST500\59\59_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\59\59_feature.json
60/500: gtFile=d:\dataSet\public\MIR-ST500\60\60_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\60\60_feature.json
61/500: gtFile=d:\dataSet\public\MIR-ST500\61\61_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\61\61_feature.json
62/500: gtFile=d:\dataSet\public\MIR-ST500\62\62_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\62\62_feature.json
63/500: gtFile=d:\dataSet\public\MIR-ST500\63\63_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\63\63_feature.json
64/500: gtFile=d:\dataSet\public\MIR-ST500\64\64_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\64\64_feature.json
65/500: gtFile=d:\dataSet\public\MIR-ST500\65\65_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\65\65_feature.json
66/500: gtFile=d:\dataSet\public\MIR-ST500\66\66_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\66\66_feature.json
67/500: gtFile=d:\dataSet\public\MIR-ST500\67\67_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\67\67_feature.json
68/500: gtFile=d:\dataSet\public\MIR-ST500\68\68_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\68\68_feature.json
69/500: gtFile=d:\dataSet\public\MIR-ST500\69\69_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\69\69_feature.json
70/500: gtFile=d:\dataSet\public\MIR-ST500\70\70_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\70\70_feature.json
71/500: gtFile=d:\dataSet\public\MIR-ST500\71\71_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\71\71_feature.json
72/500: gtFile=d:\dataSet\public\MIR-ST500\72\72_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\72\72_feature.json
73/500: gtFile=d:\dataSet\public\MIR-ST500\73\73_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\73\73_feature.json
74/500: gtFile=d:\dataSet\public\MIR-ST500\74\74_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\74\74_feature.json
75/500: gtFile=d:\dataSet\public\MIR-ST500\75\75_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\75\75_feature.json
76/500: gtFile=d:\dataSet\public\MIR-ST500\76\76_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\76\76_feature.json
77/500: gtFile=d:\dataSet\public\MIR-ST500\77\77_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\77\77_feature.json
78/500: gtFile=d:\dataSet\public\MIR-ST500\78\78_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\78\78_feature.json
79/500: gtFile=d:\dataSet\public\MIR-ST500\79\79_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\79\79_feature.json
80/500: gtFile=d:\dataSet\public\MIR-ST500\80\80_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\80\80_feature.json
81/500: gtFile=d:\dataSet\public\MIR-ST500\81\81_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\81\81_feature.json
82/500: gtFile=d:\dataSet\public\MIR-ST500\82\82_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\82\82_feature.json
83/500: gtFile=d:\dataSet\public\MIR-ST500\83\83_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\83\83_feature.json
84/500: gtFile=d:\dataSet\public\MIR-ST500\84\84_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\84\84_feature.json
85/500: gtFile=d:\dataSet\public\MIR-ST500\85\85_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\85\85_feature.json
86/500: gtFile=d:\dataSet\public\MIR-ST500\86\86_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\86\86_feature.json
87/500: gtFile=d:\dataSet\public\MIR-ST500\87\87_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\87\87_feature.json
88/500: gtFile=d:\dataSet\public\MIR-ST500\88\88_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\88\88_feature.json
89/500: gtFile=d:\dataSet\public\MIR-ST500\89\89_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\89\89_feature.json
90/500: gtFile=d:\dataSet\public\MIR-ST500\90\90_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\90\90_feature.json
91/500: gtFile=d:\dataSet\public\MIR-ST500\91\91_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\91\91_feature.json
92/500: gtFile=d:\dataSet\public\MIR-ST500\92\92_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\92\92_feature.json
93/500: gtFile=d:\dataSet\public\MIR-ST500\93\93_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\93\93_feature.json
94/500: gtFile=d:\dataSet\public\MIR-ST500\94\94_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\94\94_feature.json
95/500: gtFile=d:\dataSet\public\MIR-ST500\95\95_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\95\95_feature.json
96/500: gtFile=d:\dataSet\public\MIR-ST500\96\96_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\96\96_feature.json
97/500: gtFile=d:\dataSet\public\MIR-ST500\97\97_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\97\97_feature.json
98/500: gtFile=d:\dataSet\public\MIR-ST500\98\98_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\98\98_feature.json
99/500: gtFile=d:\dataSet\public\MIR-ST500\99\99_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\99\99_feature.json
100/500: gtFile=d:\dataSet\public\MIR-ST500\100\100_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\100\100_feature.json
101/500: gtFile=d:\dataSet\public\MIR-ST500\101\101_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\101\101_feature.json
102/500: gtFile=d:\dataSet\public\MIR-ST500\102\102_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\102\102_feature.json
103/500: gtFile=d:\dataSet\public\MIR-ST500\103\103_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\103\103_feature.json
104/500: gtFile=d:\dataSet\public\MIR-ST500\104\104_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\104\104_feature.json
105/500: gtFile=d:\dataSet\public\MIR-ST500\105\105_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\105\105_feature.json
106/500: gtFile=d:\dataSet\public\MIR-ST500\106\106_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\106\106_feature.json
107/500: gtFile=d:\dataSet\public\MIR-ST500\107\107_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\107\107_feature.json
108/500: gtFile=d:\dataSet\public\MIR-ST500\108\108_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\108\108_feature.json
109/500: gtFile=d:\dataSet\public\MIR-ST500\109\109_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\109\109_feature.json
110/500: gtFile=d:\dataSet\public\MIR-ST500\110\110_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\110\110_feature.json
111/500: gtFile=d:\dataSet\public\MIR-ST500\111\111_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\111\111_feature.json
112/500: gtFile=d:\dataSet\public\MIR-ST500\112\112_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\112\112_feature.json
113/500: gtFile=d:\dataSet\public\MIR-ST500\113\113_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\113\113_feature.json
114/500: gtFile=d:\dataSet\public\MIR-ST500\114\114_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\114\114_feature.json
115/500: gtFile=d:\dataSet\public\MIR-ST500\115\115_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\115\115_feature.json
116/500: gtFile=d:\dataSet\public\MIR-ST500\116\116_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\116\116_feature.json
117/500: gtFile=d:\dataSet\public\MIR-ST500\117\117_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\117\117_feature.json
118/500: gtFile=d:\dataSet\public\MIR-ST500\118\118_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\118\118_feature.json
119/500: gtFile=d:\dataSet\public\MIR-ST500\119\119_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\119\119_feature.json
120/500: gtFile=d:\dataSet\public\MIR-ST500\120\120_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\120\120_feature.json
121/500: gtFile=d:\dataSet\public\MIR-ST500\121\121_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\121\121_feature.json
122/500: gtFile=d:\dataSet\public\MIR-ST500\122\122_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\122\122_feature.json
123/500: gtFile=d:\dataSet\public\MIR-ST500\123\123_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\123\123_feature.json
124/500: gtFile=d:\dataSet\public\MIR-ST500\124\124_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\124\124_feature.json
125/500: gtFile=d:\dataSet\public\MIR-ST500\125\125_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\125\125_feature.json
126/500: gtFile=d:\dataSet\public\MIR-ST500\126\126_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\126\126_feature.json
127/500: gtFile=d:\dataSet\public\MIR-ST500\127\127_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\127\127_feature.json
128/500: gtFile=d:\dataSet\public\MIR-ST500\128\128_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\128\128_feature.json
129/500: gtFile=d:\dataSet\public\MIR-ST500\129\129_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\129\129_feature.json
130/500: gtFile=d:\dataSet\public\MIR-ST500\130\130_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\130\130_feature.json
131/500: gtFile=d:\dataSet\public\MIR-ST500\131\131_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\131\131_feature.json
132/500: gtFile=d:\dataSet\public\MIR-ST500\132\132_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\132\132_feature.json
133/500: gtFile=d:\dataSet\public\MIR-ST500\133\133_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\133\133_feature.json
134/500: gtFile=d:\dataSet\public\MIR-ST500\134\134_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\134\134_feature.json
135/500: gtFile=d:\dataSet\public\MIR-ST500\135\135_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\135\135_feature.json
136/500: gtFile=d:\dataSet\public\MIR-ST500\136\136_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\136\136_feature.json
137/500: gtFile=d:\dataSet\public\MIR-ST500\137\137_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\137\137_feature.json
138/500: gtFile=d:\dataSet\public\MIR-ST500\138\138_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\138\138_feature.json
139/500: gtFile=d:\dataSet\public\MIR-ST500\139\139_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\139\139_feature.json
140/500: gtFile=d:\dataSet\public\MIR-ST500\140\140_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\140\140_feature.json
141/500: gtFile=d:\dataSet\public\MIR-ST500\141\141_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\141\141_feature.json
142/500: gtFile=d:\dataSet\public\MIR-ST500\142\142_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\142\142_feature.json
143/500: gtFile=d:\dataSet\public\MIR-ST500\143\143_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\143\143_feature.json
144/500: gtFile=d:\dataSet\public\MIR-ST500\144\144_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\144\144_feature.json
145/500: gtFile=d:\dataSet\public\MIR-ST500\145\145_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\145\145_feature.json
146/500: gtFile=d:\dataSet\public\MIR-ST500\146\146_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\146\146_feature.json
147/500: gtFile=d:\dataSet\public\MIR-ST500\147\147_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\147\147_feature.json
148/500: gtFile=d:\dataSet\public\MIR-ST500\148\148_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\148\148_feature.json
149/500: gtFile=d:\dataSet\public\MIR-ST500\149\149_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\149\149_feature.json
150/500: gtFile=d:\dataSet\public\MIR-ST500\150\150_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\150\150_feature.json
151/500: gtFile=d:\dataSet\public\MIR-ST500\151\151_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\151\151_feature.json
152/500: gtFile=d:\dataSet\public\MIR-ST500\152\152_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\152\152_feature.json
153/500: gtFile=d:\dataSet\public\MIR-ST500\153\153_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\153\153_feature.json
154/500: gtFile=d:\dataSet\public\MIR-ST500\154\154_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\154\154_feature.json
155/500: gtFile=d:\dataSet\public\MIR-ST500\155\155_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\155\155_feature.json
156/500: gtFile=d:\dataSet\public\MIR-ST500\156\156_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\156\156_feature.json
157/500: gtFile=d:\dataSet\public\MIR-ST500\157\157_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\157\157_feature.json
158/500: gtFile=d:\dataSet\public\MIR-ST500\158\158_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\158\158_feature.json
159/500: gtFile=d:\dataSet\public\MIR-ST500\159\159_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\159\159_feature.json
160/500: gtFile=d:\dataSet\public\MIR-ST500\160\160_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\160\160_feature.json
161/500: gtFile=d:\dataSet\public\MIR-ST500\161\161_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\161\161_feature.json
162/500: gtFile=d:\dataSet\public\MIR-ST500\162\162_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\162\162_feature.json
163/500: gtFile=d:\dataSet\public\MIR-ST500\163\163_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\163\163_feature.json
164/500: gtFile=d:\dataSet\public\MIR-ST500\164\164_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\164\164_feature.json
165/500: gtFile=d:\dataSet\public\MIR-ST500\165\165_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\165\165_feature.json
166/500: gtFile=d:\dataSet\public\MIR-ST500\166\166_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\166\166_feature.json
167/500: gtFile=d:\dataSet\public\MIR-ST500\167\167_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\167\167_feature.json
168/500: gtFile=d:\dataSet\public\MIR-ST500\168\168_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\168\168_feature.json
169/500: gtFile=d:\dataSet\public\MIR-ST500\169\169_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\169\169_feature.json
170/500: gtFile=d:\dataSet\public\MIR-ST500\170\170_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\170\170_feature.json
171/500: gtFile=d:\dataSet\public\MIR-ST500\171\171_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\171\171_feature.json
172/500: gtFile=d:\dataSet\public\MIR-ST500\172\172_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\172\172_feature.json
173/500: gtFile=d:\dataSet\public\MIR-ST500\173\173_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\173\173_feature.json
174/500: gtFile=d:\dataSet\public\MIR-ST500\174\174_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\174\174_feature.json
175/500: gtFile=d:\dataSet\public\MIR-ST500\175\175_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\175\175_feature.json
176/500: gtFile=d:\dataSet\public\MIR-ST500\176\176_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\176\176_feature.json
177/500: gtFile=d:\dataSet\public\MIR-ST500\177\177_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\177\177_feature.json
178/500: gtFile=d:\dataSet\public\MIR-ST500\178\178_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\178\178_feature.json
179/500: gtFile=d:\dataSet\public\MIR-ST500\179\179_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\179\179_feature.json
180/500: gtFile=d:\dataSet\public\MIR-ST500\180\180_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\180\180_feature.json
181/500: gtFile=d:\dataSet\public\MIR-ST500\181\181_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\181\181_feature.json
182/500: gtFile=d:\dataSet\public\MIR-ST500\182\182_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\182\182_feature.json
183/500: gtFile=d:\dataSet\public\MIR-ST500\183\183_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\183\183_feature.json
184/500: gtFile=d:\dataSet\public\MIR-ST500\184\184_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\184\184_feature.json
185/500: gtFile=d:\dataSet\public\MIR-ST500\185\185_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\185\185_feature.json
186/500: gtFile=d:\dataSet\public\MIR-ST500\186\186_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\186\186_feature.json
187/500: gtFile=d:\dataSet\public\MIR-ST500\187\187_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\187\187_feature.json
188/500: gtFile=d:\dataSet\public\MIR-ST500\188\188_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\188\188_feature.json
189/500: gtFile=d:\dataSet\public\MIR-ST500\189\189_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\189\189_feature.json
190/500: gtFile=d:\dataSet\public\MIR-ST500\190\190_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\190\190_feature.json
191/500: gtFile=d:\dataSet\public\MIR-ST500\191\191_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\191\191_feature.json
192/500: gtFile=d:\dataSet\public\MIR-ST500\192\192_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\192\192_feature.json
193/500: gtFile=d:\dataSet\public\MIR-ST500\193\193_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\193\193_feature.json
194/500: gtFile=d:\dataSet\public\MIR-ST500\194\194_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\194\194_feature.json
195/500: gtFile=d:\dataSet\public\MIR-ST500\195\195_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\195\195_feature.json
196/500: gtFile=d:\dataSet\public\MIR-ST500\196\196_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\196\196_feature.json
197/500: gtFile=d:\dataSet\public\MIR-ST500\197\197_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\197\197_feature.json
198/500: gtFile=d:\dataSet\public\MIR-ST500\198\198_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\198\198_feature.json
199/500: gtFile=d:\dataSet\public\MIR-ST500\199\199_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\199\199_feature.json
200/500: gtFile=d:\dataSet\public\MIR-ST500\200\200_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\200\200_feature.json
201/500: gtFile=d:\dataSet\public\MIR-ST500\201\201_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\201\201_feature.json
202/500: gtFile=d:\dataSet\public\MIR-ST500\202\202_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\202\202_feature.json
203/500: gtFile=d:\dataSet\public\MIR-ST500\203\203_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\203\203_feature.json
204/500: gtFile=d:\dataSet\public\MIR-ST500\204\204_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\204\204_feature.json
205/500: gtFile=d:\dataSet\public\MIR-ST500\205\205_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\205\205_feature.json
206/500: gtFile=d:\dataSet\public\MIR-ST500\206\206_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\206\206_feature.json
207/500: gtFile=d:\dataSet\public\MIR-ST500\207\207_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\207\207_feature.json
208/500: gtFile=d:\dataSet\public\MIR-ST500\208\208_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\208\208_feature.json
209/500: gtFile=d:\dataSet\public\MIR-ST500\209\209_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\209\209_feature.json
210/500: gtFile=d:\dataSet\public\MIR-ST500\210\210_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\210\210_feature.json
211/500: gtFile=d:\dataSet\public\MIR-ST500\211\211_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\211\211_feature.json
212/500: gtFile=d:\dataSet\public\MIR-ST500\212\212_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\212\212_feature.json
213/500: gtFile=d:\dataSet\public\MIR-ST500\213\213_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\213\213_feature.json
214/500: gtFile=d:\dataSet\public\MIR-ST500\214\214_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\214\214_feature.json
215/500: gtFile=d:\dataSet\public\MIR-ST500\215\215_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\215\215_feature.json
216/500: gtFile=d:\dataSet\public\MIR-ST500\216\216_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\216\216_feature.json
217/500: gtFile=d:\dataSet\public\MIR-ST500\217\217_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\217\217_feature.json
218/500: gtFile=d:\dataSet\public\MIR-ST500\218\218_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\218\218_feature.json
219/500: gtFile=d:\dataSet\public\MIR-ST500\219\219_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\219\219_feature.json
220/500: gtFile=d:\dataSet\public\MIR-ST500\220\220_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\220\220_feature.json
221/500: gtFile=d:\dataSet\public\MIR-ST500\221\221_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\221\221_feature.json
222/500: gtFile=d:\dataSet\public\MIR-ST500\222\222_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\222\222_feature.json
223/500: gtFile=d:\dataSet\public\MIR-ST500\223\223_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\223\223_feature.json
224/500: gtFile=d:\dataSet\public\MIR-ST500\224\224_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\224\224_feature.json
225/500: gtFile=d:\dataSet\public\MIR-ST500\225\225_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\225\225_feature.json
226/500: gtFile=d:\dataSet\public\MIR-ST500\226\226_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\226\226_feature.json
227/500: gtFile=d:\dataSet\public\MIR-ST500\227\227_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\227\227_feature.json
228/500: gtFile=d:\dataSet\public\MIR-ST500\228\228_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\228\228_feature.json
229/500: gtFile=d:\dataSet\public\MIR-ST500\229\229_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\229\229_feature.json
230/500: gtFile=d:\dataSet\public\MIR-ST500\230\230_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\230\230_feature.json
231/500: gtFile=d:\dataSet\public\MIR-ST500\231\231_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\231\231_feature.json
232/500: gtFile=d:\dataSet\public\MIR-ST500\232\232_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\232\232_feature.json
233/500: gtFile=d:\dataSet\public\MIR-ST500\233\233_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\233\233_feature.json
234/500: gtFile=d:\dataSet\public\MIR-ST500\234\234_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\234\234_feature.json
235/500: gtFile=d:\dataSet\public\MIR-ST500\235\235_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\235\235_feature.json
236/500: gtFile=d:\dataSet\public\MIR-ST500\236\236_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\236\236_feature.json
237/500: gtFile=d:\dataSet\public\MIR-ST500\237\237_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\237\237_feature.json
238/500: gtFile=d:\dataSet\public\MIR-ST500\238\238_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\238\238_feature.json
239/500: gtFile=d:\dataSet\public\MIR-ST500\239\239_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\239\239_feature.json
240/500: gtFile=d:\dataSet\public\MIR-ST500\240\240_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\240\240_feature.json
241/500: gtFile=d:\dataSet\public\MIR-ST500\241\241_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\241\241_feature.json
242/500: gtFile=d:\dataSet\public\MIR-ST500\242\242_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\242\242_feature.json
243/500: gtFile=d:\dataSet\public\MIR-ST500\243\243_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\243\243_feature.json
244/500: gtFile=d:\dataSet\public\MIR-ST500\244\244_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\244\244_feature.json
245/500: gtFile=d:\dataSet\public\MIR-ST500\245\245_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\245\245_feature.json
246/500: gtFile=d:\dataSet\public\MIR-ST500\246\246_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\246\246_feature.json
247/500: gtFile=d:\dataSet\public\MIR-ST500\247\247_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\247\247_feature.json
248/500: gtFile=d:\dataSet\public\MIR-ST500\248\248_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\248\248_feature.json
249/500: gtFile=d:\dataSet\public\MIR-ST500\249\249_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\249\249_feature.json
250/500: gtFile=d:\dataSet\public\MIR-ST500\250\250_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\250\250_feature.json
251/500: gtFile=d:\dataSet\public\MIR-ST500\251\251_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\251\251_feature.json
252/500: gtFile=d:\dataSet\public\MIR-ST500\252\252_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\252\252_feature.json
253/500: gtFile=d:\dataSet\public\MIR-ST500\253\253_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\253\253_feature.json
254/500: gtFile=d:\dataSet\public\MIR-ST500\254\254_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\254\254_feature.json
255/500: gtFile=d:\dataSet\public\MIR-ST500\255\255_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\255\255_feature.json
256/500: gtFile=d:\dataSet\public\MIR-ST500\256\256_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\256\256_feature.json
257/500: gtFile=d:\dataSet\public\MIR-ST500\257\257_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\257\257_feature.json
258/500: gtFile=d:\dataSet\public\MIR-ST500\258\258_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\258\258_feature.json
259/500: gtFile=d:\dataSet\public\MIR-ST500\259\259_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\259\259_feature.json
260/500: gtFile=d:\dataSet\public\MIR-ST500\260\260_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\260\260_feature.json
261/500: gtFile=d:\dataSet\public\MIR-ST500\261\261_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\261\261_feature.json
262/500: gtFile=d:\dataSet\public\MIR-ST500\262\262_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\262\262_feature.json
263/500: gtFile=d:\dataSet\public\MIR-ST500\263\263_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\263\263_feature.json
264/500: gtFile=d:\dataSet\public\MIR-ST500\264\264_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\264\264_feature.json
265/500: gtFile=d:\dataSet\public\MIR-ST500\265\265_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\265\265_feature.json
266/500: gtFile=d:\dataSet\public\MIR-ST500\266\266_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\266\266_feature.json
267/500: gtFile=d:\dataSet\public\MIR-ST500\267\267_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\267\267_feature.json
268/500: gtFile=d:\dataSet\public\MIR-ST500\268\268_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\268\268_feature.json
269/500: gtFile=d:\dataSet\public\MIR-ST500\269\269_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\269\269_feature.json
270/500: gtFile=d:\dataSet\public\MIR-ST500\270\270_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\270\270_feature.json
271/500: gtFile=d:\dataSet\public\MIR-ST500\271\271_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\271\271_feature.json
272/500: gtFile=d:\dataSet\public\MIR-ST500\272\272_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\272\272_feature.json
273/500: gtFile=d:\dataSet\public\MIR-ST500\273\273_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\273\273_feature.json
274/500: gtFile=d:\dataSet\public\MIR-ST500\274\274_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\274\274_feature.json
275/500: gtFile=d:\dataSet\public\MIR-ST500\275\275_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\275\275_feature.json
276/500: gtFile=d:\dataSet\public\MIR-ST500\276\276_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\276\276_feature.json
277/500: gtFile=d:\dataSet\public\MIR-ST500\277\277_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\277\277_feature.json
278/500: gtFile=d:\dataSet\public\MIR-ST500\278\278_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\278\278_feature.json
279/500: gtFile=d:\dataSet\public\MIR-ST500\279\279_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\279\279_feature.json
280/500: gtFile=d:\dataSet\public\MIR-ST500\280\280_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\280\280_feature.json
281/500: gtFile=d:\dataSet\public\MIR-ST500\281\281_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\281\281_feature.json
282/500: gtFile=d:\dataSet\public\MIR-ST500\282\282_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\282\282_feature.json
283/500: gtFile=d:\dataSet\public\MIR-ST500\283\283_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\283\283_feature.json
284/500: gtFile=d:\dataSet\public\MIR-ST500\284\284_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\284\284_feature.json
285/500: gtFile=d:\dataSet\public\MIR-ST500\285\285_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\285\285_feature.json
286/500: gtFile=d:\dataSet\public\MIR-ST500\286\286_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\286\286_feature.json
287/500: gtFile=d:\dataSet\public\MIR-ST500\287\287_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\287\287_feature.json
288/500: gtFile=d:\dataSet\public\MIR-ST500\288\288_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\288\288_feature.json
289/500: gtFile=d:\dataSet\public\MIR-ST500\289\289_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\289\289_feature.json
290/500: gtFile=d:\dataSet\public\MIR-ST500\290\290_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\290\290_feature.json
291/500: gtFile=d:\dataSet\public\MIR-ST500\291\291_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\291\291_feature.json
292/500: gtFile=d:\dataSet\public\MIR-ST500\292\292_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\292\292_feature.json
293/500: gtFile=d:\dataSet\public\MIR-ST500\293\293_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\293\293_feature.json
294/500: gtFile=d:\dataSet\public\MIR-ST500\294\294_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\294\294_feature.json
295/500: gtFile=d:\dataSet\public\MIR-ST500\295\295_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\295\295_feature.json
296/500: gtFile=d:\dataSet\public\MIR-ST500\296\296_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\296\296_feature.json
297/500: gtFile=d:\dataSet\public\MIR-ST500\297\297_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\297\297_feature.json
298/500: gtFile=d:\dataSet\public\MIR-ST500\298\298_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\298\298_feature.json
299/500: gtFile=d:\dataSet\public\MIR-ST500\299\299_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\299\299_feature.json
300/500: gtFile=d:\dataSet\public\MIR-ST500\300\300_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\300\300_feature.json
301/500: gtFile=d:\dataSet\public\MIR-ST500\301\301_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\301\301_feature.json
302/500: gtFile=d:\dataSet\public\MIR-ST500\302\302_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\302\302_feature.json
303/500: gtFile=d:\dataSet\public\MIR-ST500\303\303_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\303\303_feature.json
304/500: gtFile=d:\dataSet\public\MIR-ST500\304\304_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\304\304_feature.json
305/500: gtFile=d:\dataSet\public\MIR-ST500\305\305_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\305\305_feature.json
306/500: gtFile=d:\dataSet\public\MIR-ST500\306\306_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\306\306_feature.json
307/500: gtFile=d:\dataSet\public\MIR-ST500\307\307_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\307\307_feature.json
308/500: gtFile=d:\dataSet\public\MIR-ST500\308\308_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\308\308_feature.json
309/500: gtFile=d:\dataSet\public\MIR-ST500\309\309_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\309\309_feature.json
310/500: gtFile=d:\dataSet\public\MIR-ST500\310\310_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\310\310_feature.json
311/500: gtFile=d:\dataSet\public\MIR-ST500\311\311_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\311\311_feature.json
312/500: gtFile=d:\dataSet\public\MIR-ST500\312\312_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\312\312_feature.json
313/500: gtFile=d:\dataSet\public\MIR-ST500\313\313_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\313\313_feature.json
314/500: gtFile=d:\dataSet\public\MIR-ST500\314\314_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\314\314_feature.json
315/500: gtFile=d:\dataSet\public\MIR-ST500\315\315_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\315\315_feature.json
316/500: gtFile=d:\dataSet\public\MIR-ST500\316\316_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\316\316_feature.json
317/500: gtFile=d:\dataSet\public\MIR-ST500\317\317_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\317\317_feature.json
318/500: gtFile=d:\dataSet\public\MIR-ST500\318\318_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\318\318_feature.json
319/500: gtFile=d:\dataSet\public\MIR-ST500\319\319_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\319\319_feature.json
320/500: gtFile=d:\dataSet\public\MIR-ST500\320\320_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\320\320_feature.json
321/500: gtFile=d:\dataSet\public\MIR-ST500\321\321_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\321\321_feature.json
322/500: gtFile=d:\dataSet\public\MIR-ST500\322\322_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\322\322_feature.json
323/500: gtFile=d:\dataSet\public\MIR-ST500\323\323_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\323\323_feature.json
324/500: gtFile=d:\dataSet\public\MIR-ST500\324\324_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\324\324_feature.json
325/500: gtFile=d:\dataSet\public\MIR-ST500\325\325_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\325\325_feature.json
326/500: gtFile=d:\dataSet\public\MIR-ST500\326\326_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\326\326_feature.json
327/500: gtFile=d:\dataSet\public\MIR-ST500\327\327_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\327\327_feature.json
328/500: gtFile=d:\dataSet\public\MIR-ST500\328\328_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\328\328_feature.json
329/500: gtFile=d:\dataSet\public\MIR-ST500\329\329_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\329\329_feature.json
330/500: gtFile=d:\dataSet\public\MIR-ST500\330\330_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\330\330_feature.json
331/500: gtFile=d:\dataSet\public\MIR-ST500\331\331_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\331\331_feature.json
332/500: gtFile=d:\dataSet\public\MIR-ST500\332\332_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\332\332_feature.json
333/500: gtFile=d:\dataSet\public\MIR-ST500\333\333_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\333\333_feature.json
334/500: gtFile=d:\dataSet\public\MIR-ST500\334\334_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\334\334_feature.json
335/500: gtFile=d:\dataSet\public\MIR-ST500\335\335_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\335\335_feature.json
336/500: gtFile=d:\dataSet\public\MIR-ST500\336\336_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\336\336_feature.json
337/500: gtFile=d:\dataSet\public\MIR-ST500\337\337_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\337\337_feature.json
338/500: gtFile=d:\dataSet\public\MIR-ST500\338\338_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\338\338_feature.json
339/500: gtFile=d:\dataSet\public\MIR-ST500\339\339_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\339\339_feature.json
340/500: gtFile=d:\dataSet\public\MIR-ST500\340\340_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\340\340_feature.json
341/500: gtFile=d:\dataSet\public\MIR-ST500\341\341_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\341\341_feature.json
342/500: gtFile=d:\dataSet\public\MIR-ST500\342\342_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\342\342_feature.json
343/500: gtFile=d:\dataSet\public\MIR-ST500\343\343_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\343\343_feature.json
344/500: gtFile=d:\dataSet\public\MIR-ST500\344\344_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\344\344_feature.json
345/500: gtFile=d:\dataSet\public\MIR-ST500\345\345_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\345\345_feature.json
346/500: gtFile=d:\dataSet\public\MIR-ST500\346\346_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\346\346_feature.json
347/500: gtFile=d:\dataSet\public\MIR-ST500\347\347_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\347\347_feature.json
348/500: gtFile=d:\dataSet\public\MIR-ST500\348\348_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\348\348_feature.json
349/500: gtFile=d:\dataSet\public\MIR-ST500\349\349_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\349\349_feature.json
350/500: gtFile=d:\dataSet\public\MIR-ST500\350\350_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\350\350_feature.json
351/500: gtFile=d:\dataSet\public\MIR-ST500\351\351_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\351\351_feature.json
352/500: gtFile=d:\dataSet\public\MIR-ST500\352\352_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\352\352_feature.json
353/500: gtFile=d:\dataSet\public\MIR-ST500\353\353_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\353\353_feature.json
354/500: gtFile=d:\dataSet\public\MIR-ST500\354\354_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\354\354_feature.json
355/500: gtFile=d:\dataSet\public\MIR-ST500\355\355_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\355\355_feature.json
356/500: gtFile=d:\dataSet\public\MIR-ST500\356\356_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\356\356_feature.json
357/500: gtFile=d:\dataSet\public\MIR-ST500\357\357_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\357\357_feature.json
358/500: gtFile=d:\dataSet\public\MIR-ST500\358\358_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\358\358_feature.json
359/500: gtFile=d:\dataSet\public\MIR-ST500\359\359_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\359\359_feature.json
360/500: gtFile=d:\dataSet\public\MIR-ST500\360\360_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\360\360_feature.json
361/500: gtFile=d:\dataSet\public\MIR-ST500\361\361_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\361\361_feature.json
362/500: gtFile=d:\dataSet\public\MIR-ST500\362\362_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\362\362_feature.json
363/500: gtFile=d:\dataSet\public\MIR-ST500\363\363_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\363\363_feature.json
364/500: gtFile=d:\dataSet\public\MIR-ST500\364\364_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\364\364_feature.json
365/500: gtFile=d:\dataSet\public\MIR-ST500\365\365_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\365\365_feature.json
366/500: gtFile=d:\dataSet\public\MIR-ST500\366\366_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\366\366_feature.json
367/500: gtFile=d:\dataSet\public\MIR-ST500\367\367_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\367\367_feature.json
368/500: gtFile=d:\dataSet\public\MIR-ST500\368\368_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\368\368_feature.json
369/500: gtFile=d:\dataSet\public\MIR-ST500\369\369_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\369\369_feature.json
370/500: gtFile=d:\dataSet\public\MIR-ST500\370\370_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\370\370_feature.json
371/500: gtFile=d:\dataSet\public\MIR-ST500\371\371_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\371\371_feature.json
372/500: gtFile=d:\dataSet\public\MIR-ST500\372\372_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\372\372_feature.json
373/500: gtFile=d:\dataSet\public\MIR-ST500\373\373_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\373\373_feature.json
374/500: gtFile=d:\dataSet\public\MIR-ST500\374\374_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\374\374_feature.json
375/500: gtFile=d:\dataSet\public\MIR-ST500\375\375_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\375\375_feature.json
376/500: gtFile=d:\dataSet\public\MIR-ST500\376\376_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\376\376_feature.json
377/500: gtFile=d:\dataSet\public\MIR-ST500\377\377_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\377\377_feature.json
378/500: gtFile=d:\dataSet\public\MIR-ST500\378\378_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\378\378_feature.json
379/500: gtFile=d:\dataSet\public\MIR-ST500\379\379_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\379\379_feature.json
380/500: gtFile=d:\dataSet\public\MIR-ST500\380\380_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\380\380_feature.json
381/500: gtFile=d:\dataSet\public\MIR-ST500\381\381_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\381\381_feature.json
382/500: gtFile=d:\dataSet\public\MIR-ST500\382\382_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\382\382_feature.json
383/500: gtFile=d:\dataSet\public\MIR-ST500\383\383_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\383\383_feature.json
384/500: gtFile=d:\dataSet\public\MIR-ST500\384\384_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\384\384_feature.json
385/500: gtFile=d:\dataSet\public\MIR-ST500\385\385_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\385\385_feature.json
386/500: gtFile=d:\dataSet\public\MIR-ST500\386\386_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\386\386_feature.json
387/500: gtFile=d:\dataSet\public\MIR-ST500\387\387_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\387\387_feature.json
388/500: gtFile=d:\dataSet\public\MIR-ST500\388\388_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\388\388_feature.json
389/500: gtFile=d:\dataSet\public\MIR-ST500\389\389_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\389\389_feature.json
390/500: gtFile=d:\dataSet\public\MIR-ST500\390\390_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\390\390_feature.json
391/500: gtFile=d:\dataSet\public\MIR-ST500\391\391_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\391\391_feature.json
392/500: gtFile=d:\dataSet\public\MIR-ST500\392\392_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\392\392_feature.json
393/500: gtFile=d:\dataSet\public\MIR-ST500\393\393_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\393\393_feature.json
394/500: gtFile=d:\dataSet\public\MIR-ST500\394\394_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\394\394_feature.json
395/500: gtFile=d:\dataSet\public\MIR-ST500\395\395_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\395\395_feature.json
396/500: gtFile=d:\dataSet\public\MIR-ST500\396\396_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\396\396_feature.json
397/500: gtFile=d:\dataSet\public\MIR-ST500\397\397_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\397\397_feature.json
398/500: gtFile=d:\dataSet\public\MIR-ST500\398\398_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\398\398_feature.json
399/500: gtFile=d:\dataSet\public\MIR-ST500\399\399_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\399\399_feature.json
400/500: gtFile=d:\dataSet\public\MIR-ST500\400\400_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\400\400_feature.json
401/500: gtFile=d:\dataSet\public\MIR-ST500\401\401_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\401\401_feature.json
402/500: gtFile=d:\dataSet\public\MIR-ST500\402\402_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\402\402_feature.json
403/500: gtFile=d:\dataSet\public\MIR-ST500\403\403_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\403\403_feature.json
404/500: gtFile=d:\dataSet\public\MIR-ST500\404\404_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\404\404_feature.json
405/500: gtFile=d:\dataSet\public\MIR-ST500\405\405_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\405\405_feature.json
406/500: gtFile=d:\dataSet\public\MIR-ST500\406\406_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\406\406_feature.json
407/500: gtFile=d:\dataSet\public\MIR-ST500\407\407_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\407\407_feature.json
408/500: gtFile=d:\dataSet\public\MIR-ST500\408\408_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\408\408_feature.json
409/500: gtFile=d:\dataSet\public\MIR-ST500\409\409_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\409\409_feature.json
410/500: gtFile=d:\dataSet\public\MIR-ST500\410\410_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\410\410_feature.json
411/500: gtFile=d:\dataSet\public\MIR-ST500\411\411_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\411\411_feature.json
412/500: gtFile=d:\dataSet\public\MIR-ST500\412\412_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\412\412_feature.json
413/500: gtFile=d:\dataSet\public\MIR-ST500\413\413_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\413\413_feature.json
414/500: gtFile=d:\dataSet\public\MIR-ST500\414\414_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\414\414_feature.json
415/500: gtFile=d:\dataSet\public\MIR-ST500\415\415_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\415\415_feature.json
416/500: gtFile=d:\dataSet\public\MIR-ST500\416\416_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\416\416_feature.json
417/500: gtFile=d:\dataSet\public\MIR-ST500\417\417_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\417\417_feature.json
418/500: gtFile=d:\dataSet\public\MIR-ST500\418\418_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\418\418_feature.json
419/500: gtFile=d:\dataSet\public\MIR-ST500\419\419_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\419\419_feature.json
420/500: gtFile=d:\dataSet\public\MIR-ST500\420\420_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\420\420_feature.json
421/500: gtFile=d:\dataSet\public\MIR-ST500\421\421_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\421\421_feature.json
422/500: gtFile=d:\dataSet\public\MIR-ST500\422\422_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\422\422_feature.json
423/500: gtFile=d:\dataSet\public\MIR-ST500\423\423_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\423\423_feature.json
424/500: gtFile=d:\dataSet\public\MIR-ST500\424\424_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\424\424_feature.json
425/500: gtFile=d:\dataSet\public\MIR-ST500\425\425_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\425\425_feature.json
426/500: gtFile=d:\dataSet\public\MIR-ST500\426\426_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\426\426_feature.json
427/500: gtFile=d:\dataSet\public\MIR-ST500\427\427_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\427\427_feature.json
428/500: gtFile=d:\dataSet\public\MIR-ST500\428\428_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\428\428_feature.json
429/500: gtFile=d:\dataSet\public\MIR-ST500\429\429_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\429\429_feature.json
430/500: gtFile=d:\dataSet\public\MIR-ST500\430\430_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\430\430_feature.json
431/500: gtFile=d:\dataSet\public\MIR-ST500\431\431_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\431\431_feature.json
432/500: gtFile=d:\dataSet\public\MIR-ST500\432\432_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\432\432_feature.json
433/500: gtFile=d:\dataSet\public\MIR-ST500\433\433_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\433\433_feature.json
434/500: gtFile=d:\dataSet\public\MIR-ST500\434\434_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\434\434_feature.json
435/500: gtFile=d:\dataSet\public\MIR-ST500\435\435_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\435\435_feature.json
436/500: gtFile=d:\dataSet\public\MIR-ST500\436\436_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\436\436_feature.json
437/500: gtFile=d:\dataSet\public\MIR-ST500\437\437_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\437\437_feature.json
438/500: gtFile=d:\dataSet\public\MIR-ST500\438\438_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\438\438_feature.json
439/500: gtFile=d:\dataSet\public\MIR-ST500\439\439_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\439\439_feature.json
440/500: gtFile=d:\dataSet\public\MIR-ST500\440\440_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\440\440_feature.json
441/500: gtFile=d:\dataSet\public\MIR-ST500\441\441_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\441\441_feature.json
442/500: gtFile=d:\dataSet\public\MIR-ST500\442\442_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\442\442_feature.json
443/500: gtFile=d:\dataSet\public\MIR-ST500\443\443_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\443\443_feature.json
444/500: gtFile=d:\dataSet\public\MIR-ST500\444\444_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\444\444_feature.json
445/500: gtFile=d:\dataSet\public\MIR-ST500\445\445_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\445\445_feature.json
446/500: gtFile=d:\dataSet\public\MIR-ST500\446\446_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\446\446_feature.json
447/500: gtFile=d:\dataSet\public\MIR-ST500\447\447_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\447\447_feature.json
448/500: gtFile=d:\dataSet\public\MIR-ST500\448\448_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\448\448_feature.json
449/500: gtFile=d:\dataSet\public\MIR-ST500\449\449_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\449\449_feature.json
450/500: gtFile=d:\dataSet\public\MIR-ST500\450\450_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\450\450_feature.json
451/500: gtFile=d:\dataSet\public\MIR-ST500\451\451_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\451\451_feature.json
452/500: gtFile=d:\dataSet\public\MIR-ST500\452\452_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\452\452_feature.json
453/500: gtFile=d:\dataSet\public\MIR-ST500\453\453_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\453\453_feature.json
454/500: gtFile=d:\dataSet\public\MIR-ST500\454\454_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\454\454_feature.json
455/500: gtFile=d:\dataSet\public\MIR-ST500\455\455_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\455\455_feature.json
456/500: gtFile=d:\dataSet\public\MIR-ST500\456\456_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\456\456_feature.json
457/500: gtFile=d:\dataSet\public\MIR-ST500\457\457_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\457\457_feature.json
458/500: gtFile=d:\dataSet\public\MIR-ST500\458\458_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\458\458_feature.json
459/500: gtFile=d:\dataSet\public\MIR-ST500\459\459_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\459\459_feature.json
460/500: gtFile=d:\dataSet\public\MIR-ST500\460\460_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\460\460_feature.json
461/500: gtFile=d:\dataSet\public\MIR-ST500\461\461_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\461\461_feature.json
462/500: gtFile=d:\dataSet\public\MIR-ST500\462\462_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\462\462_feature.json
463/500: gtFile=d:\dataSet\public\MIR-ST500\463\463_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\463\463_feature.json
464/500: gtFile=d:\dataSet\public\MIR-ST500\464\464_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\464\464_feature.json
465/500: gtFile=d:\dataSet\public\MIR-ST500\465\465_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\465\465_feature.json
466/500: gtFile=d:\dataSet\public\MIR-ST500\466\466_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\466\466_feature.json
467/500: gtFile=d:\dataSet\public\MIR-ST500\467\467_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\467\467_feature.json
468/500: gtFile=d:\dataSet\public\MIR-ST500\468\468_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\468\468_feature.json
469/500: gtFile=d:\dataSet\public\MIR-ST500\469\469_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\469\469_feature.json
470/500: gtFile=d:\dataSet\public\MIR-ST500\470\470_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\470\470_feature.json
471/500: gtFile=d:\dataSet\public\MIR-ST500\471\471_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\471\471_feature.json
472/500: gtFile=d:\dataSet\public\MIR-ST500\472\472_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\472\472_feature.json
473/500: gtFile=d:\dataSet\public\MIR-ST500\473\473_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\473\473_feature.json
474/500: gtFile=d:\dataSet\public\MIR-ST500\474\474_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\474\474_feature.json
475/500: gtFile=d:\dataSet\public\MIR-ST500\475\475_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\475\475_feature.json
476/500: gtFile=d:\dataSet\public\MIR-ST500\476\476_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\476\476_feature.json
477/500: gtFile=d:\dataSet\public\MIR-ST500\477\477_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\477\477_feature.json
478/500: gtFile=d:\dataSet\public\MIR-ST500\478\478_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\478\478_feature.json
479/500: gtFile=d:\dataSet\public\MIR-ST500\479\479_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\479\479_feature.json
480/500: gtFile=d:\dataSet\public\MIR-ST500\480\480_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\480\480_feature.json
481/500: gtFile=d:\dataSet\public\MIR-ST500\481\481_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\481\481_feature.json
482/500: gtFile=d:\dataSet\public\MIR-ST500\482\482_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\482\482_feature.json
483/500: gtFile=d:\dataSet\public\MIR-ST500\483\483_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\483\483_feature.json
484/500: gtFile=d:\dataSet\public\MIR-ST500\484\484_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\484\484_feature.json
485/500: gtFile=d:\dataSet\public\MIR-ST500\485\485_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\485\485_feature.json
486/500: gtFile=d:\dataSet\public\MIR-ST500\486\486_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\486\486_feature.json
487/500: gtFile=d:\dataSet\public\MIR-ST500\487\487_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\487\487_feature.json
488/500: gtFile=d:\dataSet\public\MIR-ST500\488\488_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\488\488_feature.json
489/500: gtFile=d:\dataSet\public\MIR-ST500\489\489_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\489\489_feature.json
490/500: gtFile=d:\dataSet\public\MIR-ST500\490\490_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\490\490_feature.json
491/500: gtFile=d:\dataSet\public\MIR-ST500\491\491_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\491\491_feature.json
492/500: gtFile=d:\dataSet\public\MIR-ST500\492\492_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\492\492_feature.json
493/500: gtFile=d:\dataSet\public\MIR-ST500\493\493_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\493\493_feature.json
494/500: gtFile=d:\dataSet\public\MIR-ST500\494\494_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\494\494_feature.json
495/500: gtFile=d:\dataSet\public\MIR-ST500\495\495_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\495\495_feature.json
496/500: gtFile=d:\dataSet\public\MIR-ST500\496\496_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\496\496_feature.json
497/500: gtFile=d:\dataSet\public\MIR-ST500\497\497_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\497\497_feature.json
498/500: gtFile=d:\dataSet\public\MIR-ST500\498\498_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\498\498_feature.json
499/500: gtFile=d:\dataSet\public\MIR-ST500\499\499_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\499\499_feature.json
500/500: gtFile=d:\dataSet\public\MIR-ST500\500\500_groundtruth.txt, feaFile=d:\dataSet\public\MIR-ST500\500\500_feature.json
Elapsed time=97.4718 sec.

Then we can start performance evaluation:

opt=stDsPerfEval('defaultOpt');
[perf, time]=stDsPerfEval(melody02, opt, 1);	% Evaluate the performance
fprintf('Average f-measure=%g, elapsed time=%g sec.\n', perf, time);
	Warning: many-to-1 mapping, p=[2;4;5;6;10;10;12;13;14;15;18;20;21;23;24;26;29;32;33;34;35;40;41;42;43;44;45;47;48;50;52;53;54;56;57;58;59;60;62;63;64;66;71;72;73;74;75;76;77;78;79;80;83;84;85;86;92;95;96;97;99;101;102;104;105;106;107;109;116;117;118;119;120;121;123;124;127;129;134;137;138;140;141;142;148;149;151;152;154;155;156;158;160;162;163;164;166;168;170;171;172;173;176;179;180;182;183;184;185;186;188;189;190;191;193;194;195;197;198;199;200;203;205;208;209;212;213;214;215;216;217]
	Warning: many-to-1 mapping, p=[1;4;6;7;9;12;13;14;15;17;18;20;21;22;26;32;33;34;37;40;41;42;43;44;45;46;47;48;50;51;52;54;56;57;58;64;65;67;68;69;72;73;74;75;77;78;82;83;84;88;89;90;91;95;96;97;98;103;104;107;109;111;114;115;116;120;122;123;125;127;127;131;134;135;138;139;140;142;143;144;145;148;149;150;151;154;155;157;158;160;163;165;166;167;169;170;171;172;173;174;175;178;180;181;183;184;185;189;190;191;192;193;194;195]
	Warning: many-to-1 mapping, p=[3;4;5;6;7;11;16;19;20;22;30;31;32;35;36;37;38;39;40;42;43;44;45;46;47;48;50;52;53;54;55;57;58;59;60;61;63;65;67;68;70;71;72;73;74;75;76;77;79;81;83;85;86;87;88;90;92;93;94;95;97;98;99;101;102;105;110;113;116;117;118;120;121;123;124;127;129;130;131;132;134;135;136;137;138;139;140;141;142;143;144;145;146;149;150;151;153;154;155;157;161;162;163;164;165;166;167;168;169;170;172;173;176;177;178;179;181;182;183;187;188;189;190;191;192;192;194;195;196;200;202;204;205;206;207;208;209;212;213;214;218;222;228;231;232;233;235;236;237;238;241;243;246;247;248;256;257;259;261;262;263;264;265;266;268;269;270;271;276;277;279;280;282;290;291;292]
	Warning: many-to-1 mapping, p=[1;2;3;4;6;9;10;11;12;13;14;15;16;16;18;19;20;20;21;22;25;26;29;30;32;32;37;38;39;41;42;45;47;49;50;51;52;53;54;55;56;57;58;59;60;62;64;65;67;69;72;74;75;76;78;79;81;82;84;85;86;87;88;89;90;93;94;95;98;99;101;102;103;106;107;108;110;111;112;114;115;117;121;122;124;127;131;134;138;141;143;144;145;146;147;148;149;150;151;153;155;158;159;160;161;162;163;164;166;168;171;172;173;174;175;179]
	Warning: many-to-1 mapping, p=[3;4;5;7;9;11;13;14;15;16;17;18;19;20;22;23;24;24;27;28;29;30;31;32;35;36;37;38;39;41;42;43;44;45;46;47;48;49;50;51;52;54;55;57;58;59;61;63;64;65;66;67;70;72;75;77;80;82;84;86;90;91;93;94;97;100;101;103;104;105;106;107;110;111;113;114;115;122;123;124;126;127;129;132;133;134;135;136;138;139;140;141;142;144;146;148;150;152;153;154;155;156;157;158;160;163;164;166;170;172;173;174;177;178;179;181;182;183;184;186;190;192;193;194;195;196;198;199;200;201;202;204;205;207;209;210;211;214;216;217;218;220;223;228;230;233;235;237;239;240;241;242;243;244;246;247;248;249;250;251;254;257;259;263;264;265;266;267;268;269;270;271]
	Warning: many-to-1 mapping, p=[6;7;8;9;10;13;14;15;16;18;20;21;22;23;28;29;30;31;32;33;35;37;38;39;42;43;44;45;46;47;49;50;51;52;53;54;55;56;57;59;61;67;68;69;70;73;74;76;78;79;80;81;87;88;89;90;92;94;95;96;97;100;101;104;105;106;107;108;109;111;115;116;117;117;118;122;123;124;125;126;127;128;132;133;134;135;137;138;143;144;145;150;151;152;153;155;157;159;161;164;165;166;167;169;170;172;173;175;182;183;184;186;190;193;195;196;198;201;203;204;205;208;211;213;214;215;216;219;220;223;224;226;227;228;229;230;234;236;237;240;241;242;244;245;247;249;252;253;255;256;257;258;259;260;262]
Average f-measure=0.329787, elapsed time=1.79791 sec.

Summary

This is a brief tutorial on singing transcription. There are several directions for further improvement:

Appendix

List of functions, scripts, and datasets used in this script:

Date and time when finishing this script:

fprintf('Date & time: %s\n', char(datetime));
Date & time: 19-Jun-2020 23:26:35

Overall elapsed time:

toc(scriptStartTime)
Elapsed time is 245.388673 seconds.

Jyh-Shing Roger Jang, created on

datetime
ans = 

  datetime

   19-Jun-2020 23:26:35

If you are interested in the original MATLAB code for this page, you can type "grabcode(URL)" under MATLAB, where URL is the web address of this page.