-
Notifications
You must be signed in to change notification settings - Fork 1
/
q2.py
72 lines (35 loc) · 1.39 KB
/
q2.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
from libtempodetect import report
from libtempodetect import path
import pathlib
def all( root_path ):
root_path = pathlib.Path( root_path )
for temp_typepath in root_path.iterdir() :
print( temp_typepath.stem )
report_cls = report.Report()
result = report_cls.folder( temp_typepath )
print( result )
if __name__ == '__main__':
# Ballroom
folder_path = R"D:\Temporary\ttttt\MIR_HW2_Dataset\Ballroom\ALL"
regex_pattern = R"\d\S+"
report_cls = report.Report()
result = report_cls.folder_beat( folder_path , regex_pattern )
print( "Ballroom : " , result )
# # SMC
# folder_path = R"D:\Temporary\ttttt\MIR_HW2_Dataset\SMC"
# regex_pattern = R"\d\S+"
# report_cls = report.Report()
# result = report_cls.folder_beat( folder_path , regex_pattern )
# print( "SMC : " , result )
# # JCS
# folder_path = R"D:\Temporary\ttttt\MIR_HW2_Dataset\JCS"
# regex_pattern = R"\d\S+"
# report_cls = report.Report()
# result = report_cls.folder_beat( folder_path , regex_pattern )
# print( "JCS : " , result )
# # ASAP
# folder_path = R"D:\Temporary\ttttt\MIR_HW2_Dataset\ASAP"
# regex_pattern = R"\d\S+(?=\t\d)"
# report_cls = report.Report()
# result = report_cls.folder_beat( folder_path , regex_pattern )
# print( "ASAP : " , result )