forked from google-research/pix2seq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
utils.py
429 lines (359 loc) · 14.5 KB
/
utils.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
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
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
# coding=utf-8
# Copyright 2022 The Pix2Seq Authors.
#
# 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.
# ==============================================================================
"""General utils (used across different modules)."""
from concurrent import futures
import copy
import functools
import json
import logging
import math
import operator
import os
import matplotlib
import matplotlib.cm
import numpy as np
import time
import vocab
import tensorflow as tf
def json_serializable(val):
try:
json.dumps(val)
return True
except TypeError:
return False
def tf_float32(t):
return tf.cast(t, tf.float32)
def flatten_batch_dims(t, out_rank):
"""Merge first few dims to have out_rank."""
if t.shape.rank == out_rank:
return t
if t.shape.rank < out_rank:
raise ValueError('Tensor has rank %d. Expected at least %d' %
(t.shape.rank, out_rank))
shape_list = shape_as_list(t)
in_rank = len(shape_list)
split = in_rank - out_rank + 1
inner_dims = shape_list[split:]
new_bsz = functools.reduce(operator.mul, shape_list[:split])
out_shape = [new_bsz] + inner_dims
return tf.reshape(t, out_shape)
def flatten_non_batch_dims(t, out_rank):
"""Merge last few dims to have out_rank."""
if t.shape.rank == out_rank:
return t
if t.shape.rank < out_rank:
raise ValueError('Tensor has rank %d. Expected at least %d' %
(t.shape.rank, out_rank))
shape_list = shape_as_list(t)
split = out_rank - 1
inner_dims = shape_list[:split]
new_last_dim = functools.reduce(operator.mul, shape_list[split:])
out_shape = inner_dims + [new_last_dim]
return tf.reshape(t, out_shape)
def int2bits(x, n, out_dtype=None):
"""Convert an integer x in (...) into bits in (..., n)."""
x = tf.bitwise.right_shift(tf.expand_dims(x, -1), tf.range(n))
x = tf.math.mod(x, 2)
if out_dtype and out_dtype != x.dtype:
x = tf.cast(x, out_dtype)
return x
def bits2int(x, out_dtype):
"""Converts bits x in (..., n) into an integer in (...)."""
x = tf.cast(x, out_dtype)
x = tf.reduce_sum((x * 2)**(tf.range(tf.shape(x)[-1])), -1) - tf.cast(
x[..., 0] == 0, x.dtype)
return x
def images2patches(images, patch_size, dividers=(1,), keep_spatial=True):
"""Extract patches of same size in multiple resolutions."""
_, height, width, _ = shape_as_list(images) # (bsz, h, w, c)
patches_list = []
for d in dividers:
inputs = images
if d > 1:
inputs = tf.image.resize(
inputs, [height // d, width // d], method='bicubic', antialias=True)
patches = tf.image.extract_patches(
inputs,
sizes=[1, patch_size, patch_size, 1],
strides=[1, patch_size, patch_size, 1],
rates=[1, 1, 1, 1],
padding='VALID')
if not keep_spatial:
pshape = shape_as_list(patches) # (bsz, #p1, #p2, p_size1*p_size2*3)
patches = tf.reshape(patches, [pshape[0], pshape[1]*pshape[2], pshape[3]])
patches_list.append(patches)
return patches_list
def patches2images(patches_list, patch_size):
"""Putting list of patches back into images."""
images_list = []
for patches in patches_list:
if patches.shape.ndims == 3:
bsz, n_patches, d = shape_as_list(patches) # (bsz, n_patches, d)
s = tf.cast(tf.math.sqrt(tf.cast(n_patches, tf.float32)), tf.int32)
patches = tf.reshape(patches, [bsz, s, s, d])
else:
assert patches.shape.ndims == 4 # (bsz, h, w, d)
if patch_size > 1:
images = tf.nn.depth_to_space(patches, patch_size)
else:
images = patches
images_list.append(images)
return images_list
def tile_along_batch(t, factor):
"""Tile tensor in the first/batch dimension."""
if factor == 1:
return t
t = tf.expand_dims(t, 1)
multiples = [1] * t.shape.rank
multiples[1] = factor
t = tf.tile(t, multiples)
shape = shape_as_list(t)
return tf.reshape(t, [shape[0] * shape[1]] + shape[2:])
def shape_as_list(t):
# Assumes rank of `t` is statically known.
shape = t.shape.as_list()
dynamic_shape = tf.shape(t)
return [
shape[i] if shape[i] is not None else dynamic_shape[i]
for i in range(len(shape))
]
def pad_to_max_len(data, max_len, dim):
"""Pad the data tensor to max length on dim."""
shape = shape_as_list(data)
padding_shape, new_shape = copy.copy(shape), copy.copy(shape)
padding_shape[dim] = max_len - padding_shape[dim]
new_shape[dim] = max_len
paddings = tf.zeros(padding_shape, dtype=data.dtype)
return tf.reshape(tf.concat([data, paddings], axis=dim), new_shape)
def quantize(coordinates, bins):
"""Quantization of (normalized) coordinates in [0, 1]."""
coordinates = tf.cast(tf.round(coordinates * (bins - 1)), tf.int64)
coordinates = tf.clip_by_value(coordinates, 0, bins - 1)
return coordinates
def dequantize(boxes, bins):
"""Dequantization of discrete tokens of coordinates in [0, bins-1]."""
boxes = tf.cast(boxes, tf.float32)
boxes = boxes / (bins - 1)
return boxes
def yx2xy(seq):
x = np.asarray(seq[1::2]).reshape([-1, 1])
y = np.asarray(seq[::2]).reshape([-1, 1])
return np.concatenate([x, y], axis=-1).reshape([-1]).tolist()
def scale_points(points, scale):
"""Scales points.
Args:
points: Tensor with shape [num_points * 2], [batch, num_points * 2] or
[batch, instances, num_points * 2] where points are organized in
(y, x) format.
scale: Tensor with shape [2] or [batch, 2].
Returns:
Tensor with same shape as points.
"""
points_orig = points
orig_shape = tf.shape(points)
coords_len = points.shape[-1]
if points.shape.rank == 1:
points = tf.reshape(points, [coords_len // 2, 2])
elif points.shape.rank == 2:
points = tf.reshape(points, [-1, coords_len // 2, 2])
else:
points = tf.reshape(points, [-1, orig_shape[1], coords_len // 2, 2])
scale = tf.expand_dims(scale, -2)
points = points * scale
points = tf.reshape(points, orig_shape)
points = preserve_reserved_tokens(points, points_orig)
return points
def scale_points_v2(points, scale):
points = tf.reshape(points, [-1, 2, 2])
points = points * scale
points = tf.reshape(points, [-1, 4])
return points
def preserve_reserved_tokens(points, points_orig):
"""Preserve reserved tokens in points according to points_orig."""
return replace_reserved_tokens(points, points_orig, dict(zip(vocab.FLOATS,
vocab.FLOATS)))
def replace_reserved_tokens(seq, ref_seq, replacements):
for key, replacement in replacements.items():
seq = tf.where(
tf.equal(ref_seq, key), tf.constant(replacement, seq.dtype), seq)
return seq
def restore_from_checkpoint(model_dir, except_partial, **kwargs):
"""Restores the latest ckpt.
Args:
model_dir: directory of checkpoint to be restored.
except_partial: whether to allow partially restoring the checkpoint.
**kwargs: arguments for `tf.train.Checkpoint` so it knows what to restore,
e.g., `model=model, global_step=global_step, optimizer=optimizer`.
Returns:
latest_ckpt: The full path to the latest checkpoint or None if no
checkpoint was found.
checkpoint object
verify_restored: function for verification
"""
verify_restored = None
checkpoint = tf.train.Checkpoint(**kwargs)
latest_ckpt = tf.train.latest_checkpoint(model_dir)
if latest_ckpt:
logging.info('Restoring from latest checkpoint: %s', latest_ckpt)
if except_partial:
status = checkpoint.restore(latest_ckpt).expect_partial()
else:
status = checkpoint.restore(latest_ckpt)
verify_restored = status.assert_consumed
return latest_ckpt, checkpoint, verify_restored
def check_checkpoint_restored(strict_verifiers, loose_verifiers=()):
"""Verification after model variables built."""
strict_verifiers_new = []
for strict_verifier in strict_verifiers: # Stop exp from running.
if strict_verifier:
strict_verifier()
strict_verifier = None
strict_verifiers_new.append(strict_verifier)
loose_verifiers_new = []
for loose_verifier in loose_verifiers: # Give warning in the log.
if loose_verifier:
try:
loose_verifier()
except AssertionError as e:
logging.info('+++++++++++++++++++++++++++++++++++++++++++++++++++++++')
logging.info('+++++++++++Checkpoint verification msg begin+++++++++++')
logging.info('+++++++++++++++++++++++++++++++++++++++++++++++++++++++')
logging.info(e)
logging.info('+++++++++++++++++++++++++++++++++++++++++++++++++++++++')
logging.info('+++++++++++Checkpoint verification msg ends+++++++++++')
logging.info('+++++++++++++++++++++++++++++++++++++++++++++++++++++++')
loose_verifier = None
loose_verifiers_new.append(loose_verifier)
return strict_verifiers_new, loose_verifiers_new
def build_strategy(use_tpu, master):
"""Returns a tf.distribute.Strategy."""
if use_tpu:
cluster = tf.distribute.cluster_resolver.TPUClusterResolver(master)
tf.config.experimental_connect_to_cluster(cluster)
topology = tf.tpu.experimental.initialize_tpu_system(cluster)
logging.info('Topology:')
logging.info('num_tasks: %d', topology.num_tasks)
logging.info('num_tpus_per_task: %d', topology.num_tpus_per_task)
strategy = tf.distribute.TPUStrategy(cluster)
else: # For (multiple) GPUs.
cross_device_ops = None # tf.distribute.NcclAllReduce() by default
# if the default cross_device_ops fails, try either of the following two
# by uncommenting it.
# cross_device_ops = tf.distribute.HierarchicalCopyAllReduce()
# cross_device_ops = tf.distribute.ReductionToOneDevice()
strategy = tf.distribute.MirroredStrategy(cross_device_ops=cross_device_ops)
logging.info('Running using MirroredStrategy on %d replicas',
strategy.num_replicas_in_sync)
return strategy
def get_train_steps(dataset, train_steps, train_epochs, train_batch_size):
"""Determine the number of training steps."""
num_train_examples = dataset.num_train_examples
return train_steps or (
num_train_examples * train_epochs // train_batch_size + 1)
def get_eval_steps(dataset, eval_steps, eval_batch_size):
"""Determine the number of eval steps."""
num_eval_examples = dataset.num_eval_examples
if not eval_steps and num_eval_examples and num_eval_examples % eval_batch_size != 0:
raise ValueError('Only divisible eval batch sizes are currently supported.')
# TODO(b/181662974): Revert this and support non-even batch sizes.
# return eval_steps or int(
# math.ceil(num_eval_examples / eval_batch_size))
return eval_steps or (int(
math.floor(num_eval_examples /
eval_batch_size)) if num_eval_examples else None)
def get_checkpoint_steps(dataset, checkpoint_steps,
checkpoint_epochs, train_batch_size):
"""Determine the number of checkpoint steps."""
num_train_examples = dataset.num_train_examples
return checkpoint_steps or checkpoint_epochs * int(
round(num_train_examples / train_batch_size))
def count_params(model, verbose=True):
"""Count parameters in `tf.keras.models.Model`."""
if verbose:
logging.info('Trainable variables:')
total_params = 0
for var in model.trainable_variables:
if verbose:
logging.info('%s\t%s', var.name, var.shape)
total_params += np.prod(var.shape)
if verbose:
logging.info('Total number of parameters: {:,}'.format(total_params))
return total_params
def merge_list_of_dict(list_of_dict):
"""Merge a list of dictionary (with shared keys) into a single dictionary."""
if len(list_of_dict) == 1:
return list_of_dict[0]
dict_new = {}
for key in list_of_dict[0].keys():
dict_new[key] = tf.stack([x[key] for x in list_of_dict])
return dict_new
def get_and_log_config(config, model_dir, training):
"""Get the config and log it."""
config.model_dir = model_dir
logging.info('Config: %s', config)
# Log config to the model directory.
if training:
config_filepath = os.path.join(model_dir, 'config.json')
else:
config_filepath = os.path.join(model_dir, f'config_{config.eval.tag}.json')
if not tf.io.gfile.exists(config_filepath):
tf.io.gfile.makedirs(model_dir)
with tf.io.gfile.GFile(config_filepath, 'w') as f:
f.write(config.to_json(indent=2, sort_keys=True))
return config
def colorize(images, vmin=None, vmax=None, cmap=None):
"""Convert grayscaled images into into colored images.
Args:
images: grayscale image tensor of shape (h, w) or (bsz, h, w).
vmin: the minimum value of the range used for normalization.
(Default: minimum of images)
vmax: the maximum value of the range used for normalization.
(Default: maximum of images)
cmap: a valid cmap named for use with matplotlib's `get_cmap`.
(Default: 'gray')
Returns:
a colored image tensor of shape (h, w) or (bsz, h, w).
"""
vmin = tf.reduce_min(images) if vmin is None else vmin
vmax = tf.reduce_max(images) if vmax is None else vmax
images = (images - vmin) / (vmax - vmin)
images = tf.squeeze(images) # squeeze last dim if it exists
indices = tf.cast(tf.round(images * 255), tf.int32)
cm = matplotlib.cm.get_cmap(cmap if cmap is not None else 'viridis')
colors = tf.constant(cm.colors, dtype=tf.float32)
return tf.gather(colors, indices)
def copy_dir(source_dir, destination_dir):
"""Copy files in the source directory to a destination directory."""
logging.info('Copying files from %s to %s', source_dir, destination_dir)
start = time.time()
if tf.io.gfile.exists(destination_dir):
logging.info('Removing existing files at %s', destination_dir)
tf.io.gfile.rmtree(destination_dir)
tf.io.gfile.makedirs(destination_dir)
filenames = tf.io.gfile.listdir(source_dir)
copy_fns = [
lambda filename=filename: tf.io.gfile.copy(
os.path.join(source_dir, filename),
os.path.join(destination_dir, filename)) for filename in filenames
]
runInParallel(copy_fns)
logging.info('Copying %d files took %.2f seconds', len(filenames),
time.time() - start)
def runInParallel(fns):
with futures.ThreadPoolExecutor() as executor:
tasks = [executor.submit(fn) for fn in fns]
for task in tasks:
task.result()