# Copyright 2020 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 enum import Enum class NumpyPadMode(Enum): """ See also: https://numpy.org/doc/1.18/reference/generated/numpy.pad.html """ CONSTANT = "constant" EDGE = "edge" LINEAR_RAMP = "linear_ramp" MAXIMUM = "maximum" MEAN = "mean" MEDIAN = "median" MINIMUM = "minimum" REFLECT = "reflect" SYMMETRIC = "symmetric" WRAP = "wrap" EMPTY = "empty" class GridSampleMode(Enum): """ See also: https://pytorch.org/docs/stable/nn.functional.html#grid-sample """ BILINEAR = "bilinear" NEAREST = "nearest" class InterpolateMode(Enum): """ See also: https://pytorch.org/docs/stable/nn.functional.html#interpolate """ NEAREST = "nearest" LINEAR = "linear" BILINEAR = "bilinear" BICUBIC = "bicubic" TRILINEAR = "trilinear" AREA = "area" class UpsampleMode(Enum): """ See also: https://pytorch.org/docs/stable/nn.html#upsample """ NEAREST = "nearest" LINEAR = "linear" BILINEAR = "bilinear" BICUBIC = "bicubic" TRILINEAR = "trilinear" class BlendMode(Enum): """ See also: :py:class:`monai.data.utils.compute_importance_map` """ CONSTANT = "constant" GAUSSIAN = "gaussian" class PytorchPadMode(Enum): """ See also: https://pytorch.org/docs/stable/nn.functional.html#pad """ CONSTANT = "constant" REFLECT = "reflect" REPLICATE = "replicate" CIRCULAR = "circular" class GridSamplePadMode(Enum): """ See also: https://pytorch.org/docs/stable/nn.functional.html#grid-sample """ ZEROS = "zeros" BORDER = "border" REFLECTION = "reflection" class Average(Enum): """ See also: :py:class:`monai.metrics.rocauc.compute_roc_auc` """ MACRO = "macro" WEIGHTED = "weighted" MICRO = "micro" NONE = "none" class MetricReduction(Enum): """ See also: :py:class:`monai.metrics.meandice.DiceMetric` """ NONE = "none" MEAN = "mean" SUM = "sum" MEAN_BATCH = "mean_batch" SUM_BATCH = "sum_batch" MEAN_CHANNEL = "mean_channel" SUM_CHANNEL = "sum_channel" class LossReduction(Enum): """ See also: - :py:class:`monai.losses.dice.DiceLoss` - :py:class:`monai.losses.dice.GeneralizedDiceLoss` - :py:class:`monai.losses.focal_loss.FocalLoss` - :py:class:`monai.losses.tversky.TverskyLoss` """ NONE = "none" MEAN = "mean" SUM = "sum" class Weight(Enum): """ See also: :py:class:`monai.losses.dice.GeneralizedDiceLoss` """ SQUARE = "square" SIMPLE = "simple" UNIFORM = "uniform" class Normalisation(Enum): """ See also: - :py:class:`monai.networks.nets.ConvNormActi` - :py:class:`monai.networks.nets.HighResBlock` - :py:class:`monai.networks.nets.HighResNet` """ BATCH = "batch" INSTANCE = "instance" class Activation(Enum): """ See also: - :py:class:`monai.networks.nets.ConvNormActi` - :py:class:`monai.networks.nets.HighResBlock` - :py:class:`monai.networks.nets.HighResNet` """ RELU = "relu" PRELU = "prelu" RELU6 = "relu6" class ChannelMatching(Enum): """ See also: :py:class:`monai.networks.nets.HighResBlock` """ PAD = "pad" PROJECT = "project" class Method(Enum): """ See also: :py:class:`monai.transforms.croppad.array.SpatialPad` """ SYMMETRIC = "symmetric" END = "end"