-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsummarize_results.py
197 lines (142 loc) · 4.42 KB
/
summarize_results.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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
import os, pickle, argparse
import numpy as np
import matplotlib.pyplot as plt
def get_r2_mae(path):
r2 = []
mae = []
count = 0
for f in os.listdir(path):
if f[-6:] != 'pickle':
continue
r2_score, mae_score = pickle.load(open(os.path.join(path, f), 'rb'))
r2.append(np.mean(r2_score))
mae.append(np.mean(mae_score))
count += 1
return r2, mae, count
def get_r2_mae_joint(path):
r2IV = []
maeIV = []
r2Tg = []
maeTg = []
count = 0
for f in os.listdir(path):
if f[-6:] != 'pickle':
continue
result_dict = pickle.load(open(os.path.join(path, f), 'rb'))
r2IV.append(result_dict['IV'][0])
maeIV.append(result_dict['IV'][1])
r2Tg.append(result_dict['Tg'][0])
maeTg.append(result_dict['Tg'][1])
count += 1
return r2IV, maeIV, r2Tg, maeTg, count
def summarize(path):
r2 = []
mae = []
count = 0
for f in os.listdir(path):
if f[-6:] != 'pickle':
continue
r2_score, mae_score = pickle.load(open(os.path.join(path, f), 'rb'))
r2.append(np.mean(r2_score))
mae.append(np.mean(mae_score))
count += 1
print('Num folds: {}'.format(count))
print('R2: {:.4f} +- {:.4f}'.format(
np.mean(r2),
np.std(r2) / np.sqrt(len(r2))
))
print('MAE: {:.4f} +- {:.4f}'.format(
np.mean(mae),
np.std(mae) / np.sqrt(len(mae))
))
def plot_dist(path):
r2 = []
mae = []
count = 0
for f in os.listdir(path):
if f[-6:] != 'pickle':
continue
r2_score, mae_score = pickle.load(open(os.path.join(path, f), 'rb'))
r2.append(np.mean(r2_score))
mae.append(np.mean(mae_score))
count += 1
fig, (ax1, ax2) = plt.subplots(1, 2)
ax1.hist(r2, bins = 20)
ax1.set_title('R2')
ax2.hist(mae, bins = 20)
ax2.set_title('MAE')
plt.show()
def summarize_joint(path):
r2IV = []
maeIV = []
r2Tg = []
maeTg = []
count = 0
for f in os.listdir(path):
if f[-6:] != 'pickle':
continue
result_dict = pickle.load(open(os.path.join(path, f), 'rb'))
r2IV.append(result_dict['IV'][0])
maeIV.append(result_dict['IV'][1])
r2Tg.append(result_dict['Tg'][0])
maeTg.append(result_dict['Tg'][1])
count += 1
scores = [(r2IV, maeIV), (r2Tg, maeTg)]
names = ['IV', 'Tg']
print('Num folds: {}'.format(count))
for i in range(len(scores)):
r2, mae = scores[i]
print('{} -----------------------'.format(names[i]))
print('R2: {:.4f} +- {:.4f}'.format(
np.mean(r2),
np.std(r2) / np.sqrt(len(r2))
))
print('MAE: {:.4f} +- {:.4f}'.format(
np.mean(mae),
np.std(mae) / np.sqrt(len(mae))
))
def plot_dist_joint(path):
r2IV = []
maeIV = []
r2Tg = []
maeTg = []
count = 0
for f in os.listdir(path):
if f[-6:] != 'pickle':
continue
result_dict = pickle.load(open(os.path.join(path, f), 'rb'))
r2IV.append(result_dict['IV'][0])
maeIV.append(result_dict['IV'][1])
r2Tg.append(result_dict['Tg'][0])
maeTg.append(result_dict['Tg'][1])
count += 1
scores = [(r2IV, maeIV), (r2Tg, maeTg)]
names = ['IV', 'Tg']
fig, ax = plt.subplots(2, 2)
ax[0][0].hist(np.array(r2IV).flatten(), bins = 50)
ax[0][0].set_title('R2 IV')
ax[0][1].hist(np.array(maeIV).flatten(), bins = 50)
ax[0][1].set_title('MAE IV')
ax[1][0].hist(np.array(r2Tg).flatten(), bins = 50)
ax[1][0].set_title('R2 Tg')
ax[1][1].hist(np.array(maeTg).flatten(), bins = 50)
ax[1][1].set_title('MAE Tg')
plt.show()
if __name__ == '__main__':
parser = argparse.ArgumentParser()
parser.add_argument('--path', type=str, required=True,
help = 'Path to summarize')
parser.add_argument('--joint', action='store_true',
help = 'Use if trying to summarize joint model (different storage system).')
parser.add_argument('--plot', action = 'store_true',
help = 'Plots histograms of the r2 and mae for each fold')
args = parser.parse_args()
if args.plot:
if args.joint:
plot_dist_joint(args.path)
else:
plot_dist(args.path)
if args.joint:
summarize_joint(args.path)
else:
summarize(args.path)