MCPcopy Create free account
hub / github.com/Project-MONAI/MONAI / InterpolateMode

Class InterpolateMode

monai/utils/enums.py:160–171  ·  view source on GitHub ↗

See also: https://pytorch.org/docs/stable/generated/torch.nn.functional.interpolate.html

Source from the content-addressed store, hash-verified

158
159
160class InterpolateMode(StrEnum):
161 """
162 See also: https://pytorch.org/docs/stable/generated/torch.nn.functional.interpolate.html
163 """
164
165 NEAREST = "nearest"
166 NEAREST_EXACT = "nearest-exact"
167 LINEAR = "linear"
168 BILINEAR = "bilinear"
169 BICUBIC = "bicubic"
170 TRILINEAR = "trilinear"
171 AREA = "area"
172
173
174class UpsampleMode(StrEnum):

Callers 1

__init__Method · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…