forked from Project-MONAI/MONAI
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathutils_pytorch_numpy_unification.py
More file actions
402 lines (315 loc) · 13.1 KB
/
Copy pathutils_pytorch_numpy_unification.py
File metadata and controls
402 lines (315 loc) · 13.1 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
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
# Copyright (c) MONAI Consortium
# 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.
from typing import Optional, Sequence, Union
import numpy as np
import torch
from monai.config.type_definitions import NdarrayOrTensor, NdarrayTensor
from monai.utils.misc import is_module_ver_at_least
from monai.utils.type_conversion import convert_data_type, convert_to_dst_type
__all__ = [
"allclose",
"moveaxis",
"in1d",
"clip",
"percentile",
"where",
"nonzero",
"floor_divide",
"unravel_index",
"unravel_indices",
"ravel",
"any_np_pt",
"maximum",
"concatenate",
"cumsum",
"isfinite",
"searchsorted",
"repeat",
"isnan",
"ascontiguousarray",
"stack",
"mode",
"unique",
]
def allclose(a: NdarrayTensor, b: NdarrayOrTensor, rtol=1e-5, atol=1e-8, equal_nan=False) -> bool:
"""`np.allclose` with equivalent implementation for torch."""
b, *_ = convert_to_dst_type(b, a)
if isinstance(a, np.ndarray):
return np.allclose(a, b, rtol=rtol, atol=atol, equal_nan=equal_nan)
return torch.allclose(a, b, rtol=rtol, atol=atol, equal_nan=equal_nan) # type: ignore
def moveaxis(x: NdarrayOrTensor, src: Union[int, Sequence[int]], dst: Union[int, Sequence[int]]) -> NdarrayOrTensor:
"""`moveaxis` for pytorch and numpy"""
if isinstance(x, torch.Tensor):
return torch.movedim(x, src, dst) # type: ignore
return np.moveaxis(x, src, dst)
def in1d(x, y):
"""`np.in1d` with equivalent implementation for torch."""
if isinstance(x, np.ndarray):
return np.in1d(x, y)
return (x[..., None] == torch.tensor(y, device=x.device)).any(-1).view(-1)
def clip(a: NdarrayOrTensor, a_min, a_max) -> NdarrayOrTensor:
"""`np.clip` with equivalent implementation for torch."""
result: NdarrayOrTensor
if isinstance(a, np.ndarray):
result = np.clip(a, a_min, a_max)
else:
result = torch.clamp(a, a_min, a_max)
return result
def percentile(
x: NdarrayOrTensor, q, dim: Optional[int] = None, keepdim: bool = False, **kwargs
) -> Union[NdarrayOrTensor, float, int]:
"""`np.percentile` with equivalent implementation for torch.
Pytorch uses `quantile`. For more details please refer to:
https://pytorch.org/docs/stable/generated/torch.quantile.html.
https://numpy.org/doc/stable/reference/generated/numpy.percentile.html.
Args:
x: input data
q: percentile to compute (should in range 0 <= q <= 100)
dim: the dim along which the percentiles are computed. default is to compute the percentile
along a flattened version of the array.
keepdim: whether the output data has dim retained or not.
kwargs: if `x` is numpy array, additional args for `np.percentile`, more details:
https://numpy.org/doc/stable/reference/generated/numpy.percentile.html.
Returns:
Resulting value (scalar)
"""
if np.isscalar(q):
if not 0 <= q <= 100: # type: ignore
raise ValueError
elif any(q < 0) or any(q > 100):
raise ValueError
result: Union[NdarrayOrTensor, float, int]
if isinstance(x, np.ndarray):
result = np.percentile(x, q, axis=dim, keepdims=keepdim, **kwargs)
else:
q = torch.tensor(q, device=x.device)
result = torch.quantile(x, q / 100.0, dim=dim, keepdim=keepdim)
return result
def where(condition: NdarrayOrTensor, x=None, y=None) -> NdarrayOrTensor:
"""
Note that `torch.where` may convert y.dtype to x.dtype.
"""
result: NdarrayOrTensor
if isinstance(condition, np.ndarray):
if x is not None:
result = np.where(condition, x, y)
else:
result = np.where(condition) # type: ignore
else:
if x is not None:
x = torch.as_tensor(x, device=condition.device)
y = torch.as_tensor(y, device=condition.device, dtype=x.dtype)
result = torch.where(condition, x, y)
else:
result = torch.where(condition) # type: ignore
return result
def nonzero(x: NdarrayOrTensor) -> NdarrayOrTensor:
"""`np.nonzero` with equivalent implementation for torch.
Args:
x: array/tensor
Returns:
Index unravelled for given shape
"""
if isinstance(x, np.ndarray):
return np.nonzero(x)[0]
return torch.nonzero(x).flatten()
def floor_divide(a: NdarrayOrTensor, b) -> NdarrayOrTensor:
"""`np.floor_divide` with equivalent implementation for torch.
As of pt1.8, use `torch.div(..., rounding_mode="floor")`, and
before that, use `torch.floor_divide`.
Args:
a: first array/tensor
b: scalar to divide by
Returns:
Element-wise floor division between two arrays/tensors.
"""
if isinstance(a, torch.Tensor):
if is_module_ver_at_least(torch, (1, 8, 0)):
return torch.div(a, b, rounding_mode="floor")
return torch.floor_divide(a, b)
return np.floor_divide(a, b)
def unravel_index(idx, shape) -> NdarrayOrTensor:
"""`np.unravel_index` with equivalent implementation for torch.
Args:
idx: index to unravel
shape: shape of array/tensor
Returns:
Index unravelled for given shape
"""
if isinstance(idx, torch.Tensor):
coord = []
for dim in reversed(shape):
coord.append(idx % dim)
idx = floor_divide(idx, dim)
return torch.stack(coord[::-1])
return np.asarray(np.unravel_index(idx, shape))
def unravel_indices(idx, shape) -> NdarrayOrTensor:
"""Computing unravel coordinates from indices.
Args:
idx: a sequence of indices to unravel
shape: shape of array/tensor
Returns:
Stacked indices unravelled for given shape
"""
lib_stack = torch.stack if isinstance(idx[0], torch.Tensor) else np.stack
return lib_stack([unravel_index(i, shape) for i in idx]) # type: ignore
def ravel(x: NdarrayOrTensor) -> NdarrayOrTensor:
"""`np.ravel` with equivalent implementation for torch.
Args:
x: array/tensor to ravel
Returns:
Return a contiguous flattened array/tensor.
"""
if isinstance(x, torch.Tensor):
if hasattr(torch, "ravel"): # `ravel` is new in torch 1.8.0
return x.ravel()
return x.flatten().contiguous()
return np.ravel(x)
def any_np_pt(x: NdarrayOrTensor, axis: Union[int, Sequence[int]]) -> NdarrayOrTensor:
"""`np.any` with equivalent implementation for torch.
For pytorch, convert to boolean for compatibility with older versions.
Args:
x: input array/tensor
axis: axis to perform `any` over
Returns:
Return a contiguous flattened array/tensor.
"""
if isinstance(x, np.ndarray):
return np.any(x, axis) # type: ignore
# pytorch can't handle multiple dimensions to `any` so loop across them
axis = [axis] if not isinstance(axis, Sequence) else axis
for ax in axis:
try:
x = torch.any(x, ax)
except RuntimeError:
# older versions of pytorch require the input to be cast to boolean
x = torch.any(x.bool(), ax)
return x
def maximum(a: NdarrayOrTensor, b: NdarrayOrTensor) -> NdarrayOrTensor:
"""`np.maximum` with equivalent implementation for torch.
Args:
a: first array/tensor
b: second array/tensor
Returns:
Element-wise maximum between two arrays/tensors.
"""
if isinstance(a, torch.Tensor) and isinstance(b, torch.Tensor):
return torch.maximum(a, b)
return np.maximum(a, b)
def concatenate(to_cat: Sequence[NdarrayOrTensor], axis: int = 0, out=None) -> NdarrayOrTensor:
"""`np.concatenate` with equivalent implementation for torch (`torch.cat`)."""
if isinstance(to_cat[0], np.ndarray):
return np.concatenate(to_cat, axis, out) # type: ignore
return torch.cat(to_cat, dim=axis, out=out) # type: ignore
def cumsum(a: NdarrayOrTensor, axis=None, **kwargs) -> NdarrayOrTensor:
"""
`np.cumsum` with equivalent implementation for torch.
Args:
a: input data to compute cumsum.
axis: expected axis to compute cumsum.
kwargs: if `a` is PyTorch Tensor, additional args for `torch.cumsum`, more details:
https://pytorch.org/docs/stable/generated/torch.cumsum.html.
"""
if isinstance(a, np.ndarray):
return np.cumsum(a, axis)
if axis is None:
return torch.cumsum(a[:], 0, **kwargs)
return torch.cumsum(a, dim=axis, **kwargs)
def isfinite(x: NdarrayOrTensor) -> NdarrayOrTensor:
"""`np.isfinite` with equivalent implementation for torch."""
if not isinstance(x, torch.Tensor):
return np.isfinite(x)
return torch.isfinite(x)
def searchsorted(a: NdarrayTensor, v: NdarrayOrTensor, right=False, sorter=None, **kwargs) -> NdarrayTensor:
"""
`np.searchsorted` with equivalent implementation for torch.
Args:
a: numpy array or tensor, containing monotonically increasing sequence on the innermost dimension.
v: containing the search values.
right: if False, return the first suitable location that is found, if True, return the last such index.
sorter: if `a` is numpy array, optional array of integer indices that sort array `a` into ascending order.
kwargs: if `a` is PyTorch Tensor, additional args for `torch.searchsorted`, more details:
https://pytorch.org/docs/stable/generated/torch.searchsorted.html.
"""
side = "right" if right else "left"
if isinstance(a, np.ndarray):
return np.searchsorted(a, v, side, sorter) # type: ignore
return torch.searchsorted(a, v, right=right, **kwargs) # type: ignore
def repeat(a: NdarrayOrTensor, repeats: int, axis: Optional[int] = None, **kwargs) -> NdarrayOrTensor:
"""
`np.repeat` with equivalent implementation for torch (`repeat_interleave`).
Args:
a: input data to repeat.
repeats: number of repetitions for each element, repeats is broadcasted to fit the shape of the given axis.
axis: axis along which to repeat values.
kwargs: if `a` is PyTorch Tensor, additional args for `torch.repeat_interleave`, more details:
https://pytorch.org/docs/stable/generated/torch.repeat_interleave.html.
"""
if isinstance(a, np.ndarray):
return np.repeat(a, repeats, axis)
return torch.repeat_interleave(a, repeats, dim=axis, **kwargs)
def isnan(x: NdarrayOrTensor) -> NdarrayOrTensor:
"""`np.isnan` with equivalent implementation for torch.
Args:
x: array/tensor
"""
if isinstance(x, np.ndarray):
return np.isnan(x)
return torch.isnan(x)
def ascontiguousarray(x: NdarrayTensor, **kwargs) -> NdarrayOrTensor:
"""`np.ascontiguousarray` with equivalent implementation for torch (`contiguous`).
Args:
x: array/tensor
kwargs: if `x` is PyTorch Tensor, additional args for `torch.contiguous`, more details:
https://pytorch.org/docs/stable/generated/torch.Tensor.contiguous.html.
"""
if isinstance(x, np.ndarray):
if x.ndim == 0:
return x
return np.ascontiguousarray(x)
if isinstance(x, torch.Tensor):
return x.contiguous(**kwargs)
return x
def stack(x: Sequence[NdarrayTensor], dim: int) -> NdarrayTensor:
"""`np.stack` with equivalent implementation for torch.
Args:
x: array/tensor
dim: dimension along which to perform the stack (referred to as `axis` by numpy)
"""
if isinstance(x[0], np.ndarray):
return np.stack(x, dim) # type: ignore
return torch.stack(x, dim) # type: ignore
def mode(x: NdarrayTensor, dim: int = -1, to_long: bool = True) -> NdarrayTensor:
"""`torch.mode` with equivalent implementation for numpy.
Args:
x: array/tensor
dim: dimension along which to perform `mode` (referred to as `axis` by numpy)
to_long: convert input to long before performing mode.
"""
dtype = torch.int64 if to_long else None
x_t, *_ = convert_data_type(x, torch.Tensor, dtype=dtype)
o_t = torch.mode(x_t, dim).values
o, *_ = convert_to_dst_type(o_t, x)
return o
def unique(x: NdarrayTensor) -> NdarrayTensor:
"""`torch.unique` with equivalent implementation for numpy.
Args:
x: array/tensor
"""
return torch.unique(x) if isinstance(x, torch.Tensor) else np.unique(x) # type: ignore
def linalg_inv(x: NdarrayTensor) -> NdarrayTensor:
"""`torch.linalg.inv` with equivalent implementation for numpy.
Args:
x: array/tensor
"""
if isinstance(x, torch.Tensor) and hasattr(torch, "inverse"): # pytorch 1.7.0
return torch.inverse(x) # type: ignore
return torch.linalg.inv(x) if isinstance(x, torch.Tensor) else np.linalg.inv(x) # type: ignore