-
Notifications
You must be signed in to change notification settings - Fork 1
/
util.py
141 lines (119 loc) · 4.15 KB
/
util.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
import torch.nn as nn
from torch.autograd import Variable
from sklearn.metrics import fbeta_score
from torch.nn import functional as F
from matplotlib import pyplot as plt
import numpy as np
import pandas as pds
from datasets import *
import torch
import os
def evaluate(model, image):
"""Evaluate the model given evaluation images and labels"""
model.eval()
if torch.cuda.is_available():
image = image.cuda()
image = Variable(image, volatile=True)
output = model(image)
return output
def split_train_validation(num_val=3000):
"""
Save train image names and validation image names to csv files
"""
train_image_idx = np.sort(np.random.choice(40479, 40479-3000, replace=False))
all_idx = np.arange(40479)
validation_image_idx = np.zeros(num_val, dtype=np.int32)
val_idx = 0
train_idx = 0
for i in all_idx:
if not i in train_image_idx:
validation_image_idx[val_idx] = i
val_idx += 1
else:
train_idx += 1
# save train
train = []
for name in train_image_idx:
train.append('train_%s' % name)
eval = []
for name in validation_image_idx:
eval.append('train_%s' % name)
df = pds.DataFrame(train)
df.to_csv('train.csv', index=False, header=False)
df = pds.DataFrame(eval)
df.to_csv('validation.csv', index=False, header=False)
def threshold_labels(y, threshold=0.2):
"""
y is a numpy array of shape N, num_classes, threshold can either be a float or a numpy array
"""
if hasattr(threshold, '__iter__'):
for i in range(y.shape[-1]):
y[:, i] = (y[:, i] > threshold[i]).astype(np.int)
else:
y[y >= threshold] = 1
y[y <= threshold] = 0
return y
def f2_score(y_true, y_pred):
return fbeta_score(y_true, y_pred, beta=2, average='samples')
def optimize_threshold(model, mode_dir, resolution=10000):
"""
This function takes the validation set and find the best threshold for each class.
"""
model = nn.DataParallel(model)
model.load_state_dict(torch.load(mode_dir))
model.cuda()
data = validation_jpg_loader(256, transform=Compose([
Scale(224),
ToTensor()
]))
num_class = 17
pred = []
targets = []
# predict
for batch_index, (images, target) in enumerate(data):
output = evaluate(model, images)
output = F.sigmoid(output)
pred.append(output.data.cpu().numpy())
targets.append(target.cpu().numpy())
pred = np.vstack(pred)
targets = np.vstack(targets)
threshold = [0.1] * 17
# optimize
for i in range(num_class):
best_thresh = 0.0
best_score = 0.0
for r in range(resolution):
r /= resolution
threshold[i] = r
labels = threshold_labels(pred, threshold)
score = f2_score(targets, labels)
if score > best_score:
best_thresh = r
best_score = score
threshold[i] = best_thresh
print(i, best_score, best_thresh)
return threshold
class Logger(object):
def __init__(self, save_dir, name):
self.save_dir = save_dir
self.name = name
if not os.path.exists(self.save_dir):
os.makedirs(self.save_dir)
self.save_dict = {'train_loss': [], "evaluation_loss": [], 'f2_score': []}
def add_record(self, key, value):
self.save_dict[key].append(value)
def save(self):
df = pd.DataFrame.from_dict(self.save_dict)
df.to_csv(os.path.join(self.save_dir, '%s.csv' % self.name), header=True, index=False)
def save_plot(self):
train_loss = self.save_dict['train_loss']
eval_loss = self.save_dict['evaluation_loss']
f2_scores = self.save_dict['f2_score']
plt.figure()
plt.plot(np.arange(len(train_loss)), train_loss, color='red', label='train_loss')
plt.plot(np.arange(len(eval_loss)), eval_loss, color='blue', label='eval_loss')
plt.legend(loc='best')
plt.savefig('../log/%s_losses.jpg' % self.name)
plt.figure()
plt.plot(np.arange(len(f2_scores)), f2_scores)
plt.savefig('../log/%s_fcscore.jpg' % self.name)