File size: 12,580 Bytes
178d33b | 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 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 | from __future__ import absolute_import, division, print_function
import abc
import os
import faiss
import numpy as np
import torch
from sklearn.metrics import pairwise_distances
from sklearn.random_projection import SparseRandomProjection
from torch import nn
from torch.nn import functional as F
from tqdm import tqdm
from .base_postprocessor import BasePostprocessor
def embedding_concat(x, y):
B, C1, H1, W1 = x.size()
_, C2, H2, W2 = y.size()
s = int(H1 / H2)
x = F.unfold(x, kernel_size=s, dilation=1, stride=s)
x = x.view(B, C1, -1, H2, W2)
z = torch.zeros(B, C1 + C2, x.size(2), H2, W2)
for i in range(x.size(2)):
z[:, :, i, :, :] = torch.cat((x[:, :, i, :, :], y), 1)
z = z.view(B, -1, H2 * W2)
z = F.fold(z, kernel_size=s, output_size=(H1, W1), stride=s)
return z
def reshape_embedding(embedding):
embedding_list = []
for k in range(embedding.shape[0]):
for i in range(embedding.shape[2]):
for j in range(embedding.shape[3]):
embedding_list.append(embedding[k, :, i, j])
return embedding_list
class PatchcorePostprocessor(BasePostprocessor):
def __init__(self, config):
super(PatchcorePostprocessor, self).__init__(config)
self.config = config
self.postprocessor_args = config.postprocessor.postprocessor_args
self.n_neighbors = config.postprocessor.postprocessor_args.n_neighbors
self.feature_mean, self.feature_prec = None, None
self.alpha_list = None
self.gt_list_px_lvl = []
self.pred_list_px_lvl = []
self.gt_list_img_lvl = []
self.pred_list_img_lvl = []
self.img_path_list = []
self.features = []
def setup(self, net: nn.Module, id_loader_dict, ood_loader_dict):
# step 1:
self.model = net
# on train start
self.model.eval() # to stop running_var move (maybe not critical)
self.embedding_list = []
if (self.config.network.load_cached_faiss):
path = self.config.output_dir
# load index
if os.path.isfile(os.path.join(path, 'index.faiss')):
self.index = faiss.read_index(os.path.join(
path, 'index.faiss'))
if torch.cuda.is_available():
res = faiss.StandardGpuResources()
self.index = faiss.index_cpu_to_gpu(res, 0, self.index)
self.init_results_list()
return
# training step
train_dataiter = iter(id_loader_dict['train'])
for train_step in tqdm(range(1,
len(train_dataiter) + 1),
position=0,
leave=True):
batch = next(train_dataiter)
x = batch['data'].cuda()
features = self.model.forward(x, return_feature=True)
embeddings = []
for feature in features:
m = torch.nn.AvgPool2d(9, 1, 1)
embeddings.append(m(feature))
embedding = embedding_concat(embeddings[0], embeddings[1])
self.embedding_list.extend(reshape_embedding(np.array(embedding)))
# training end
total_embeddings = np.array(self.embedding_list)
# Random projection
print('Random projection')
self.randomprojector = SparseRandomProjection(
n_components='auto',
eps=0.9) # 'auto' => Johnson-Lindenstrauss lemma
self.randomprojector.fit(total_embeddings)
# Coreset Subsampling
print('Coreset Subsampling')
selector = kCenterGreedy(total_embeddings, 0, 0)
selected_idx = selector.select_batch(
model=self.randomprojector,
already_selected=[],
N=int(total_embeddings.shape[0] *
self.postprocessor_args.coreset_sampling_ratio))
self.embedding_coreset = total_embeddings[selected_idx]
print('initial embedding size : ', total_embeddings.shape)
print('final embedding size : ', self.embedding_coreset.shape)
# faiss
print('faiss indexing')
self.index = faiss.IndexFlatL2(self.embedding_coreset.shape[1])
self.index.add(self.embedding_coreset)
if not os.path.isdir(os.path.join('./results/patch/')):
os.mkdir('./results/patch/')
faiss.write_index(self.index,
os.path.join('./results/patch/', 'index.faiss'))
def init_results_list(self):
self.gt_list_px_lvl = []
self.pred_list_px_lvl = []
self.gt_list_img_lvl = []
self.pred_list_img_lvl = []
def postprocess(self, net: nn.Module, data):
self.init_results_list()
score_patch = []
# extract embedding
for x in data.split(1, dim=0):
features = self.model.forward(x, return_feature=True)
embeddings = []
for feature in features:
m = torch.nn.AvgPool2d(3, 1, 1)
embeddings.append(m(feature))
embedding_ = embedding_concat(embeddings[0], embeddings[1])
embedding_test = np.array(reshape_embedding(np.array(embedding_)))
score_patches, _ = self.index.search(embedding_test,
k=self.n_neighbors)
score_patch.append(score_patches)
N_b = score_patches[np.argmax(score_patches[:, 0])]
w = (1 - (np.max(np.exp(N_b)) / np.sum(np.exp(N_b))))
score = w * max(score_patches[:, 0]) # Image-level score
self.pred_list_img_lvl.append(score)
pred = []
for i in self.pred_list_img_lvl:
# 6.3 is the trial value.
if (i > 6.3):
pred.append(torch.tensor(1))
else:
pred.append(torch.tensor(-1))
conf = []
for i in score_patch:
conf.append(i)
conf = torch.tensor(conf, dtype=torch.float32)
conf = conf.cuda()
pred_list_img_lvl = []
for patchscore in np.concatenate([conf.cpu().tolist()]):
N_b = patchscore[np.argmax(patchscore[:, 0])]
w = (1 - (np.max(np.exp(N_b)) / np.sum(np.exp(N_b))))
score = w * max(patchscore[:, 0]) # Image-level score
pred_list_img_lvl.append(score)
if self.config.evaluator.name == 'patch':
return pred, conf
else:
return pred, -1 * torch.tensor(pred_list_img_lvl).cuda()
# Copyright 2017 Google Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""Abstract class for sampling methods.
Provides interface to sampling methods that allow same signature for
select_batch. Each subclass implements select_batch_ with the desired
signature for readability.
"""
class SamplingMethod(object):
__metaclass__ = abc.ABCMeta
@abc.abstractmethod
def __init__(self, X, y, seed, **kwargs):
self.X = X
self.y = y
self.seed = seed
def flatten_X(self):
shape = self.X.shape
flat_X = self.X
if len(shape) > 2:
flat_X = np.reshape(self.X, (shape[0], np.product(shape[1:])))
return flat_X
@abc.abstractmethod
def select_batch_(self):
return
def select_batch(self, **kwargs):
return self.select_batch_(**kwargs)
def to_dict(self):
return None
# Copyright 2017 Google Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""Returns points that minimizes the maximum distance of any point to a center.
Implements the k-Center-Greedy method in
Ozan Sener and Silvio Savarese. A Geometric Approach to Active Learning for
Convolutional Neural Networks. https://arxiv.org/abs/1708.00489 2017
Distance metric defaults to l2 distance. Features used to calculate distance
are either raw features or if a model has transform method then uses the output
of model.transform(X).
Can be extended to a robust k centers algorithm that ignores a certain number
of outlier datapoints.
Resulting centers are solution to multiple integer program.
"""
class kCenterGreedy(SamplingMethod):
def __init__(self, X, y, seed, metric='euclidean'):
self.X = X
self.y = y
self.flat_X = self.flatten_X()
self.name = 'kcenter'
self.features = self.flat_X
self.metric = metric
self.min_distances = None
self.n_obs = self.X.shape[0]
self.already_selected = []
def update_distances(self,
cluster_centers,
only_new=True,
reset_dist=False):
"""Update min distances given cluster centers.
Args:
cluster_centers: indices of cluster centers
only_new: only calculate distance for newly selected points and
update min_distances.
rest_dist: whether to reset min_distances.
"""
if reset_dist:
self.min_distances = None
if only_new:
cluster_centers = [
d for d in cluster_centers if d not in self.already_selected
]
if cluster_centers:
# Update min_distances for all examples given new cluster center.
x = self.features[cluster_centers]
dist = pairwise_distances(self.features, x, metric=self.metric)
if self.min_distances is None:
self.min_distances = np.min(dist, axis=1).reshape(-1, 1)
else:
self.min_distances = np.minimum(self.min_distances, dist)
def select_batch_(self, model, already_selected, N, **kwargs):
"""Diversity promoting active learning method that greedily forms a
batch to minimize the maximum distance to a cluster center among all
unlabeled datapoints.
Args:
model: model with scikit-like API with decision_function implemented
already_selected: index of datapoints already selected
N: batch size
Returns:
indices of points selected to minimize distance to cluster centers
"""
try:
# Assumes that the transform function takes in original data and
# not flattened data.
print('Getting transformed features...')
self.features = model.transform(self.X)
print('Calculating distances...')
self.update_distances(already_selected,
only_new=False,
reset_dist=True)
except:
print('Using flat_X as features.')
self.update_distances(already_selected,
only_new=True,
reset_dist=False)
new_batch = []
for _ in tqdm(range(N)):
if self.already_selected is None:
# Initialize centers with a randomly selected datapoint
ind = np.random.choice(np.arange(self.n_obs))
else:
ind = np.argmax(self.min_distances)
# New examples should not be in already selected since those points
# should have min_distance of zero to a cluster center.
assert ind not in already_selected
self.update_distances([ind], only_new=True, reset_dist=False)
new_batch.append(ind)
print('Maximum distance from cluster centers is %0.2f' %
max(self.min_distances))
self.already_selected = already_selected
return new_batch
|