-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Expand file tree
/
Copy pathprecision_recall.py
More file actions
executable file
·226 lines (181 loc) · 11.2 KB
/
Copy pathprecision_recall.py
File metadata and controls
executable file
·226 lines (181 loc) · 11.2 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
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
# Copyright (c) 2019, NVIDIA Corporation. All rights reserved.
#
# This work is made available under the Nvidia Source Code License-NC.
# To view a copy of this license, visit
# https://nvlabs.github.io/stylegan2/license.html
"""Precision/Recall (PR)."""
import os
import numpy as np
import tensorflow as tf
tf = tf.compat.v1
import dnnlib
import dnnlib.tflib as tflib
from metrics import metric_base
from training import misc
#----------------------------------------------------------------------------
def batch_pairwise_distances(U, V):
""" Compute pairwise distances between two batches of feature vectors."""
with tf.variable_scope('pairwise_dist_block'):
# Squared norms of each row in U and V.
norm_u = tf.reduce_sum(tf.square(U), 1)
norm_v = tf.reduce_sum(tf.square(V), 1)
# norm_u as a row and norm_v as a column vectors.
norm_u = tf.reshape(norm_u, [-1, 1])
norm_v = tf.reshape(norm_v, [1, -1])
# Pairwise squared Euclidean distances.
D = tf.maximum(norm_u - 2*tf.matmul(U, V, False, True) + norm_v, 0.0)
return D
#----------------------------------------------------------------------------
class DistanceBlock():
"""Distance block."""
def __init__(self, num_features, num_gpus):
self.num_features = num_features
self.num_gpus = num_gpus
# Initialize TF graph to calculate pairwise distances.
with tf.device('/cpu:0'):
self._features_batch1 = tf.placeholder(tf.float16, shape=[None, self.num_features])
self._features_batch2 = tf.placeholder(tf.float16, shape=[None, self.num_features])
features_split2 = tf.split(self._features_batch2, self.num_gpus, axis=0)
distances_split = []
for gpu_idx in range(self.num_gpus):
with tf.device('/gpu:%d' % gpu_idx):
distances_split.append(batch_pairwise_distances(self._features_batch1, features_split2[gpu_idx]))
self._distance_block = tf.concat(distances_split, axis=1)
def pairwise_distances(self, U, V):
"""Evaluate pairwise distances between two batches of feature vectors."""
return self._distance_block.eval(feed_dict={self._features_batch1: U, self._features_batch2: V})
#----------------------------------------------------------------------------
class ManifoldEstimator():
"""Finds an estimate for the manifold of given feature vectors."""
def __init__(self, distance_block, features, row_batch_size, col_batch_size, nhood_sizes, clamp_to_percentile=None):
"""Find an estimate of the manifold of given feature vectors."""
num_images = features.shape[0]
self.nhood_sizes = nhood_sizes
self.num_nhoods = len(nhood_sizes)
self.row_batch_size = row_batch_size
self.col_batch_size = col_batch_size
self._ref_features = features
self._distance_block = distance_block
# Estimate manifold of features by calculating distances to kth nearest neighbor of each sample.
self.D = np.zeros([num_images, self.num_nhoods], dtype=np.float16)
distance_batch = np.zeros([row_batch_size, num_images], dtype=np.float16)
seq = np.arange(max(self.nhood_sizes) + 1, dtype=np.int32)
for begin1 in range(0, num_images, row_batch_size):
end1 = min(begin1 + row_batch_size, num_images)
row_batch = features[begin1:end1]
for begin2 in range(0, num_images, col_batch_size):
end2 = min(begin2 + col_batch_size, num_images)
col_batch = features[begin2:end2]
# Compute distances between batches.
distance_batch[0:end1-begin1, begin2:end2] = self._distance_block.pairwise_distances(row_batch, col_batch)
# Find the kth nearest neighbor from the current batch.
self.D[begin1:end1, :] = np.partition(distance_batch[0:end1-begin1, :], seq, axis=1)[:, self.nhood_sizes]
if clamp_to_percentile is not None:
max_distances = np.percentile(self.D, clamp_to_percentile, axis=0)
self.D[self.D > max_distances] = 0 #max_distances # 0
def evaluate(self, eval_features, return_realism=False, return_neighbors=False):
"""Evaluate if new feature vectors are in the estimated manifold."""
num_eval_images = eval_features.shape[0]
num_ref_images = self.D.shape[0]
distance_batch = np.zeros([self.row_batch_size, num_ref_images], dtype=np.float16)
batch_predictions = np.zeros([num_eval_images, self.num_nhoods], dtype=np.int32)
#max_realism_score = np.zeros([num_eval_images,], dtype=np.float32)
realism_score = np.zeros([num_eval_images,], dtype=np.float32)
nearest_indices = np.zeros([num_eval_images,], dtype=np.int32)
for begin1 in range(0, num_eval_images, self.row_batch_size):
end1 = min(begin1 + self.row_batch_size, num_eval_images)
feature_batch = eval_features[begin1:end1]
for begin2 in range(0, num_ref_images, self.col_batch_size):
end2 = min(begin2 + self.col_batch_size, num_ref_images)
ref_batch = self._ref_features[begin2:end2]
distance_batch[0:end1-begin1, begin2:end2] = self._distance_block.pairwise_distances(feature_batch, ref_batch)
# From the minibatch of new feature vectors, determine if they are in the estimated manifold.
# If a feature vector is inside a hypersphere of some reference sample, then the new sample lies on the estimated manifold.
# The radii of the hyperspheres are determined from distances of neighborhood size k.
samples_in_manifold = distance_batch[0:end1-begin1, :, None] <= self.D
batch_predictions[begin1:end1] = np.any(samples_in_manifold, axis=1).astype(np.int32)
#max_realism_score[begin1:end1] = np.max(self.D[:, 0] / (distance_batch[0:end1-begin1, :] + 1e-18), axis=1)
#nearest_indices[begin1:end1] = np.argmax(self.D[:, 0] / (distance_batch[0:end1-begin1, :] + 1e-18), axis=1)
nearest_indices[begin1:end1] = np.argmin(distance_batch[0:end1-begin1, :], axis=1)
realism_score[begin1:end1] = self.D[nearest_indices[begin1:end1], 0] / np.min(distance_batch[0:end1-begin1, :], axis=1)
if return_realism and return_neighbors:
return batch_predictions, realism_score, nearest_indices
elif return_realism:
return batch_predictions, realism_score
elif return_neighbors:
return batch_predictions, nearest_indices
return batch_predictions
#----------------------------------------------------------------------------
def knn_precision_recall_features(ref_features, eval_features, feature_net, nhood_sizes,
row_batch_size, col_batch_size, num_gpus):
"""Calculates k-NN precision and recall for two sets of feature vectors."""
state = dnnlib.EasyDict()
#num_images = ref_features.shape[0]
num_features = feature_net.output_shape[1]
state.ref_features = ref_features
state.eval_features = eval_features
# Initialize DistanceBlock and ManifoldEstimators.
distance_block = DistanceBlock(num_features, num_gpus)
state.ref_manifold = ManifoldEstimator(distance_block, state.ref_features, row_batch_size, col_batch_size, nhood_sizes)
state.eval_manifold = ManifoldEstimator(distance_block, state.eval_features, row_batch_size, col_batch_size, nhood_sizes)
# Evaluate precision and recall using k-nearest neighbors.
#print('Evaluating k-NN precision and recall with %i samples...' % num_images)
#start = time.time()
# Precision: How many points from eval_features are in ref_features manifold.
state.precision, state.realism_scores, state.nearest_neighbors = state.ref_manifold.evaluate(state.eval_features, return_realism=True, return_neighbors=True)
state.knn_precision = state.precision.mean(axis=0)
# Recall: How many points from ref_features are in eval_features manifold.
state.recall = state.eval_manifold.evaluate(state.ref_features)
state.knn_recall = state.recall.mean(axis=0)
#elapsed_time = time.time() - start
#print('Done evaluation in: %gs' % elapsed_time)
return state
#----------------------------------------------------------------------------
class PR(metric_base.MetricBase):
def __init__(self, num_images, nhood_size, minibatch_per_gpu, row_batch_size, col_batch_size, **kwargs):
super().__init__(**kwargs)
self.num_images = num_images
self.nhood_size = nhood_size
self.minibatch_per_gpu = minibatch_per_gpu
self.row_batch_size = row_batch_size
self.col_batch_size = col_batch_size
def _evaluate(self, Gs, Gs_kwargs, num_gpus):
minibatch_size = num_gpus * self.minibatch_per_gpu
feature_net = misc.load_pkl('https://nvlabs-fi-cdn.nvidia.com/stylegan/networks/metrics/vgg16.pkl')
# Calculate features for reals.
cache_file = self._get_cache_file_for_reals(num_images=self.num_images)
os.makedirs(os.path.dirname(cache_file), exist_ok=True)
if os.path.isfile(cache_file):
ref_features = misc.load_pkl(cache_file)
else:
ref_features = np.empty([self.num_images, feature_net.output_shape[1]], dtype=np.float32)
for idx, images in enumerate(self._iterate_reals(minibatch_size=minibatch_size)):
begin = idx * minibatch_size
end = min(begin + minibatch_size, self.num_images)
ref_features[begin:end] = feature_net.run(images[:end-begin], num_gpus=num_gpus, assume_frozen=True)
if end == self.num_images:
break
misc.save_pkl(ref_features, cache_file)
# Construct TensorFlow graph.
result_expr = []
for gpu_idx in range(num_gpus):
with tf.device('/gpu:%d' % gpu_idx):
Gs_clone = Gs.clone()
feature_net_clone = feature_net.clone()
latents = tf.random_normal([self.minibatch_per_gpu] + Gs_clone.input_shape[1:])
labels = self._get_random_labels_tf(self.minibatch_per_gpu)
images = Gs_clone.get_output_for(latents, labels, **Gs_kwargs)
images = tflib.convert_images_to_uint8(images)
result_expr.append(feature_net_clone.get_output_for(images))
# Calculate features for fakes.
eval_features = np.empty([self.num_images, feature_net.output_shape[1]], dtype=np.float32)
for begin in range(0, self.num_images, minibatch_size):
self._report_progress(begin, self.num_images)
end = min(begin + minibatch_size, self.num_images)
eval_features[begin:end] = np.concatenate(tflib.run(result_expr), axis=0)[:end-begin]
# Calculate precision and recall.
state = knn_precision_recall_features(ref_features=ref_features, eval_features=eval_features, feature_net=feature_net,
nhood_sizes=[self.nhood_size], row_batch_size=self.row_batch_size, col_batch_size=self.row_batch_size, num_gpus=num_gpus)
self._report_result(state.knn_precision[0], suffix='_precision')
self._report_result(state.knn_recall[0], suffix='_recall')
#----------------------------------------------------------------------------