-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathutils.py
More file actions
55 lines (55 loc) · 1.41 KB
/
utils.py
File metadata and controls
55 lines (55 loc) · 1.41 KB
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
# RegEx Patterns generated by ChatGPT for electronic music
regex_patterns = {
"house": [
"\\bdeep\\s+house\\b",
"\\btech\\s+house\\b",
"\\bprogressive\\s+house\\b",
"\\btropical\\s+house\\b",
"\\bfuture\\s+house\\b",
"\\bacid\\s+house\\b",
"\\belectro\\s+house\\b"
],
"techno": [
"\\bminimal\\s+techno\\b",
"\\bdetroit\\s+techno\\b",
"\\bacid\\s+techno\\b",
"\\bindustrial\\s+techno\\b",
"\\bhard\\s+techno\\b",
"\\btech\\s+techno\\b"
],
"trance": [
"\\bprogressive\\s+trance\\b",
"\\buplifting\\s+trance\\b",
"\\bpsychedelic\\s+trance\\b",
"\\bgoa\\s+trance\\b",
"\\btech\\s+trance\\b",
"\\bvocal\\s+trance\\b"
],
"dubstep": [
"\\bbrostep\\b",
"\\bchillstep\\b",
"\\briddim\\b",
"\\bdeep\\s+dubstep\\b"
],
"drum_and_bass": [
"\\bdnb\\b",
"\\bneurofunk\\b",
"\\bliquid\\s+funk\\b",
"\\bjump\\s+up\\b",
"\\bdarkstep\\b",
"\\bbreakcore\\b"
],
"electro": [
"\\belectro\\b",
"\\belectro\\s+funk\\b",
"\\belectro\\s+clash\\b",
"\\bfuture\\s+electro\\b"
],
"hardcore": [
"\\bhardcore\\b",
"\\bgabber\\b",
"\\bhappy\\s+hardcore\\b",
"\\bdigital\\s+hardcore\\b",
"\\bbreakbeat\\s+hardcore\\b"
]
}