-
Notifications
You must be signed in to change notification settings - Fork 0
/
setting_path.py
104 lines (98 loc) · 1.26 KB
/
setting_path.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
import glob
# Set your dataset path
ecg_path = "D:\\ecg"
mit_path = "D:\\ecg\\mit-arrhythmia"
mit_dict = glob.glob(mit_path + "\\*.*")
mit_lc_path = ecg_path + "\\mit_lc\\Dataset"
record_list = [
"100",
"101",
"103",
"105",
"106",
"108",
"109",
"111",
"112",
"113",
"114",
"115",
"116",
"117",
"118",
"119",
"121",
"122",
"123",
"124",
"200",
"201",
"202",
"203",
"205",
"207",
"208",
"209",
"210",
"212",
"213",
"214",
"215",
"219",
"220",
"221",
"222",
"223",
"228",
"230",
"231",
"232",
"233",
"234",
]
record_list_A = [
"101",
"106",
"108",
"109",
"112",
"115",
"116",
"118",
"119",
"122",
"124",
"201",
"203",
"205",
"207",
"208",
"209",
"215",
"220",
"223",
"230",
]
record_list_B = [
"100",
"103",
"105",
"111",
"113",
"117",
"121",
"123",
"200",
"210",
"212",
"213",
"214",
"219",
"221",
"222",
"228",
"231",
"232",
"233",
"234",
]